body {
    background-color: #FFFFFF;
    color:#666666;
    background-image: linear-gradient(to bottom,#eeeeee, #ffffff);
    font-family: Verdana, Arial, "sans-serif";
    background-attachment: fixed;
}
header{
    background-color: #003058;
    color: #FFFFFF;
    font-family: Georgia, "sans-serif";

}

header h1{
    line-height: 140%;
    padding: .5rem;
    background-image: 
    url(utahtechimages/utahtechlogo.svg);
    background-position: right;
    background-repeat: no-repeat;
    padding-left: 1em;
    background-origin: border-box;
    background-size: 8%;
    /*this wasn't part of the assignment but I like it more this way*/
    margin-bottom: 0;

}

nav{
    font-weight: bold;
    background-color: #F3F3F3;
    padding-right: .5rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 2rem;

}

h2{
    color: #424242;
    font-family: Georgia, "sans-serif";
}

h3{
    color: #003058;
}

dt{
    color: #003058;
    font-weight: bold;
}
.ut{
    color: #ba1c21;
}

footer{
    font-size: .70rem;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

main{
    padding-left: 2rem;
    padding-right: 2rem;
}


#wrapper{
    min-width: 960px;
    max-width: 2048px;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0px 3px 3px rgba(66,66,66,0.3);
}

#homehero{
    background-image:
    url(utahtechimages/homehero.jpg);
    height: 300px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size:cover;
}

#studenthero{
    background-image:
    url(utahtechimages/studenthero.jpg);
    height: 300px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size:cover;
}

#facultyhero{
    background-image:
    url(utahtechimages/facultyhero.jpg);
    height: 300px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size:cover;
}

nav a{
    text-decoration: none;
}
/*
    
    Code a new style rule to prevent the hyperlinks in the nav area from displaying the default underline. Use "nav a { text-decoration: none; }"


*/