/* CSS Document used for the Web Project 1
Author: Zakaria Rahman
Course: ITWP 1000
File: project1style.css
*/
h1, h2{
    text-align: center;
}
nav{
    text-align: center;
}
nav a:link{color: blue;}
nav a:visited{color: blue}
nav a:hover{color: red}

footer{
    text-align: center;
}

body{
    background-color: white;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
}


figure, figcaption{
    align-items: center;
    text-align: center;
    font-weight: bold;        
}

/* table formatting */
table{
    margin: auto;
    border: 5px solid black;
    width: 100%;
    border-spacing: 0;
    width: 600px;
    height: 450px;
}

td, th{
    border-style: none;
    padding: 0.5em;
    width: auto;
    text-align: center;
}

tr:nth-of-type(even){
    background-color: lightblue;
}
thead:first-of-type{
    background-color: blue;
    color:#FFF;
}
/* caption tag */
caption{
    font-family: Impact, "Franklin Gothic Bold", "Arial Black", "sans-serif";
    font-weight: bold;
    font-size: 1.75em;
    padding-bottom: 0.5em;
}


