@charset "UTF-8";
/* CSS Document used for the Poem, Nursery Rhyme, Song Homework #6 Assignment 
Author: Edith Harvey
Course: ITWP 1000
File: hw6.css
*/

h1 {
     text-align: center;
}
h4 {
     text-align:center;
}

main {
     margin:20px;
}

/* Body Font Styles, Background Images, etc */
body {
     background-color: #ffffff /* white */;
     color: #000000; /* black */;
     margin-bottom: auto;
     font-family: "Comic Sans MS", "Century Gothic", Arial, sans-serif;  
}

/* link anchor tag styles */
/* all links before clicked */
a:link {
     text-decoration: none;
     color: #330099; /* dark blue */

}
/* visited link style */
a:visited {
     color: #ff0000; /* red */
}
/* hovering over link style */
a:hover {
     color: #999999; /* dark gray */
}
a:active {
     text-decoration: none;
     color: #000000; /* black */
}

.validation {
     text-align: center;
}

/* Footer area smaller text only class */
.disclaimer {
     font-size: .75em;
     text-align: center;
}