
/* changes background of everything in body */
body{
background-color: #FFFFFF;
color: #666666;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/* changes background and text color in header as well as font */
header{
    background-color: #003058;
    color: #FFFFFF;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
/* effects all h1 inside of header */
header h1{
    line-height: 140%;
    padding: .5rem;
}
/* effects everything inside of nav */
nav{
    font-weight: bold;
    background-color: #F3F3F3;
}
/* effects everything contained by h2 */
h2{
    color: #424242;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
/* effects everything contained by footer */
footer{
    font-size: .70rem;
    font-style: italic;
    text-align: center;
}

/* uses span class ut to affect line independently from h1's or header */
.ut {
    color: #BA1C21;
    font-weight: bold;
}

/* uses the id wrapper to effect all things contained within the div tag */
#wrapper{
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}
/* effects everything with dt tag */
dt{
    color: #003058;
    font-weight: bold;
}
