/* Anything in here is a CSS comment */

h1,h3 {color: #FECB24;}
/*you can write colours like that*/

li{color: #6E2A8D;}
html{color: pink;} /* this is the default for my page, unless I haven't overwritten it, by ids or classes. */
/* if I want to style only on header out of 3 or one paragraph out of 2, I need to add an "id" to the html text.
the id would connect the color in the css to the html and will make it in a color. */

#welcome{
    color: #FECB24;
}
.bluecolor{
  color: #013E7F;
}
/* the # represents the "id" and the . represents the "class" */

.redbackground {
  background-color: red;
}
