/* CSS Document used for project 1
Author: Joshua Antonow
Course: ITWP 1000
File: style.css
*/

/* Centering Text */

h1 {
    text-align: center;
}

nav {
    text-align: center;
}

footer {
    text-align: center;
}

/* Colors and Font Families */

body {
    background-color: aquamarine;
    color: black;
    font-family: 'Times New Roman', Times, serif;
    margin: 10px;
}