/* 
CSS Document used for Web Project 1
Author: Brandon Rudnik
Course: ITWP 1000
File: styles.css Infromation on tables and CSS formatting for tables is located in Chapter 8.
*/


body {
    background-color: #f4f4f4;
    margin: 10px;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
}


/* center all headers, figcaptions, navigation and footer. */
h1, h2, h3, nav, footer {
    text-align: center;
}

/* table formatting */
table {
    margin: auto;
    border: 1px solid #000;
    border-spacing: 0;
}

thead {
    background-color: #eaeaea;
    text-align: center;
}

div {
    text-align: left;
}

tr:nth-of-type(even) {
    background-color: #eaeaea;
}