/* CSS Document used for project 1
Author: Hunter Brodsky
Course: ITWP 1000
File: styles.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: indianred ;
    color: aliceblue;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
}
h1 {
    text-align: center;
    font-size: 2.5em;
}
nav {
    text-align: center;
}
footer{
    font-size: 9px;
    font-style: italic;
    text-align: center;
}
figure {border: 2px solid saddlebrown;
 padding: 10px; width: 640px; background-color: beige;}
figcaption {font-family: 'Times New Roman', Times, serif;
text-align: center; color: black;}