
/* changes background of everything in body */
body{
background: linear-gradient(to bottom, #eeeeee, #ffffff);
background-attachment: fixed;
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;
    background-image: url(utahtechlogo.svg);
    background-position: right;
    background-repeat: no-repeat;
    padding-left: 1em;
    background-origin: content-box;
    margin-bottom: 0;
}
/* effects everything inside of nav */
nav{
    font-weight: bold;
    background-color: #F3F3F3;
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
}
/* 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;
    padding: 1rem;
}

/* 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{
    background-color: #FFFFFF;
    box-shadow: 0px 3px 3px rgba(66, 66, 66, 0.3);
    width: 80%;
    min-width: 960px;
    max-width: 2048px;
    margin-right: auto;
    margin-left: auto;
}
/* effects everything with dt tag */
dt{
    color: #003058;
    font-weight: bold;
}
h3{
    color: rgba(00, 30, 50, 1);
}
main{
    padding-left: 2rem;
    padding-right: 2rem;
}
#homehero{
    height: 300px;
    background-image: url(homehero.jpg);
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
}
#facultyhero{
    height: 300px;
    background-image: url(facultyhero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#studenthero{
    height: 300px;
    background-image: url(studenthero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
nav a { text-decoration: none;}