how to override * CSS tag code example
Example: css overwriting styles
body {
background-color: black;
background-color: blue !important ;
/*
The second background color would show since it has
a !important afterwards, this is to overwrite css you have
already wrote. However, this is not recomended.
*/
}