/* Author: Lucas Willett
   Class: ITWP 1000
   Web Project 1

/* Body rule: background color, font color, font family, 10px margin */
body {
    background-color: #1a2e1a;
    color: #e8e0d0;
    font-family: Georgia, "Times New Roman", serif;
    margin: 10px;
}

/* Center the main page header */
h1 {
    text-align: center;
}

/* Center site navigation */
nav {
    text-align: center;
}

/* Center footer information */
footer {
    text-align: center;
}

/* Additional styling */
h2 {
    color: #8fbc8f;
}

a {
    color: #c8a96e;
}

a:visited {
    color: #a08050;
}

nav a {
    margin: 0 10px;
}

figure {
    text-align: center;
}

figcaption {
    font-style: italic;
    margin-top: 5px;
}

footer {
    margin-top: 30px;
    border-top: 1px solid #8fbc8f;
    padding-top: 10px;
}

iframe {
    border: 0;
}
