/* CSS Document used for web project 1
Author: Adrianna Taite
Course: ITWP 1000
File: style.css
*/
body {
    background-color: #fff8f0;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
}
h1 {
    text-align:center;
    color: #b35c00;
}
nav {
    text-align:center;
    margin-bottom:20px;
}
footer {
    text-align:center;
    font-size: 0.9em;
    margin-top: 30px;
}
figure {
    text-align:center;
    margin: 15px auto;
}
figcaption {
    font-style:italic;
    font-size: 0.9em;
    color: #666;
}
a {
    color: #b35c00;
    text-decoration:none;
}
a:hover {
    text-decoration: underline;
}