
/*A CSS comment starts with "/*" and ends with */
/*semicolons separates stuff */
/* go to http://www.color-hex.com/ to get color names*/

/*h1{color: #857d7d;
  background-color: #c3e1f9;}

h3{color: #800909}

p{color: #e56f1f;}

li{color: blue;}*/

/* id's and class (in HTML) have more dominace over the stuff before,
id's for use once, classes for editing multiple items */

#welcome{color: red}
.blue {color:green}
.redbackground{background-color: red;}
