body{background-color: blue;}               /* background color*/
h1{color: yellow; text-align: center;}      /*center text aligment for each h1*/
li a{display: block; width: 60px}           /*nav list type*/
li a:hover{ background-color: yellow; color:black;}    /*anchor state: hover*/
li a:active{ background-color: yellow; color: black;}   /*anchor state: active*/
li a:link{ background color: gray; color: white;}
li a:visited{ color: white;}

.content {
    font-family: "Times New Roman";
    font-size: 14px;
    font-color: purple;
}               /*class "content" w/ font family, size, color*/

footer{background-color: orange; font-size: 12px;}

#thumbail {
    background-color: lightblue;
    height: 150px;
    width: 200px;
}               /*id thumbail*/

/*5 more css rules*/




