/*
CSS Document used for Web Project 1
Author: Anthony Brisbin
Course: ITWP 1000
File: style.css
Embedded and inline styling should not be present within your web pages, everything is controlled by the CSS within your single external CSS file.

The following should be included and are required within your website:

NOTE: Information about using an external style sheet can be found starting on Page 107 in your book.

    • Create an external CSS file that contains the following:

        o A CSS rule for centering your main page header (the h1 tag)

        o A CSS rule for centering your site navigation (the nav tag)

        o A CSS rule for centering your footer information (the footer tag)

NOTE: You can find information about the text-align property and centering on Pages 97-98 in your book.

        o A CSS body rule that sets the background color, the font color, the font family, and applies a 10 pixel margin for each of your site page(s).

            § You can find more information about the background-color and color properties on Pages 85-86 within your book.

            § You can find more information about the margin property on Pages 248-249 within your book.

            § You can find more information about the font-family property on Pages 94-95 within your book.

*/
h1 {
    text-align: center;
}

nav {
    text-align: center;
}

footer {
    text-align: center;
}

table{
    border-collapse: collapse;
}

th, td {
    border-right: 1px solid black;
    padding: 8px;
}

tr:nth-of-type(even) {
    background-color: darkslategray;
}
/*removes the bar on the side of tables*/
.rembar {
    text-align: center;
    border-right: 0px;
}

caption {
    font-family: 'Times New Roman', Times, serif,;
    font-weight: bold;
    font-size: 1.75em;
    padding-bottom: 0.5em;
}

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

a {
    color: aqua;
}

a:visited {
    color: rgb(0, 139, 139);
}