/* CSS Style Sheet for Homework #1 */
/* Edith Harvey */

/* body main style, sets up text color, font sizes and types */
body {
     font-family: "Comic Sans MS", "Century Gothic", Arial, Helvetica, sans-serif;
     font-size: 12px;
     color: #000000 /* black text */
}

/* All headers used in this assignment */ 
/* heading 1 style, main headers and titles */
h1 {
     color: #009900; /* darker green */
     text-align: center;
     font-size: 2.5em;
}
/* heading 5 style, I like to use with the footer element */
h5 {
     color: #009900; /* darker green */
     font-style: italic;
     text-align: center;
     font-size: .75em;
}

/* Coloring each paragraph a different color of fall */
/* Each paragraph gets smaller font to simulate things going down */
.paragraph01 {
     color: green;
     font-size: 1.5em;
}
.paragraph02 {
     color: orange;
     font-size: 1.3em;
}
.paragraph03 {
     color: red;
     font-size: 1.15em;
}
.paragraph04 {
     color: brown;
     font-size: 1em;
}

/* title id tag for under header and image */
#title {
     color: chocolate;
     font-size: 2em;
     text-align: center;
}

/* id tag created for dislaimer/footnote before validation line */
#footnote {
     color: red;
     font-size: 1em;
     text-align: center;
}