/* CSS Document used for Project 1.
Author: Jordan Winburn
Course: ITWP 1000
File: p1style.css
Information on using external CSS style sheet is located in Chapter 3. Information on media queries is located in Chapter 7.
Information on tables and CSS formatting for tables is located in Chapter 8. */

body
{
    background-color: cornflowerblue;
    text-align: center;
}
a:link
{
    color: cornsilk;
}
a:hover
{
    color: darkgray;
}
h1
{
    text-align: center;
}
footer
{
    font-size: small;
}