body {
   background-color: #FFFFFF; 
   color: #666666;
   font-family: Verdana, Arial, sans-serif;
/*task 5.1*/
   background: linear-gradient(to bottom, #eeeeee, #ffffff);
   background-attachment: fixed;
}

header {
    background-color: #003058;
    color: #FFFFFF;
    font-family: Georgia, serif;
}

header h1 {
    line-height: 140%;
    padding: .5rem;
    /*Task 5.3
    Modify the style rules for the h1 element selector. Configure the utahtechlogo.jpg as a background-image that displays on the right (use background-position) and does not repeat. Set its left padding to 1em. Configure a background-origin: content-box; Add a "margin-bottom:0" to remove the space between the nav and header. This is caused by the default margin applied to the h1 tag and we need to remove it.
    */
    background-image: url("utahtechimages/utahtechlogo.svg");
    background-position: right;
    background-repeat: no-repeat;
    padding-left: 1rem;
    background-origin: content-box;
    margin-bottom:0;
}

nav {
/*Task 5.4*/
    font-weight: bold;
    background-color: #f3f3f3;
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 2rem;
}

h2 {
    color: #424242;
    font-family: Georgia, serif;
}

dt {
    color: #003058;
    font-weight: bold;
}

.ut {
    color: #BA1C21;
    font-weight: bold;
}
/*Task 5.5*/
footer {
    font-size: .70rem;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}
/*Task 5.2*/
#wrapper {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    background-color: #ffffff;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 0px 3px 3px rgba(66,66,66,0.3);
}
/*Task 5.6*/
h3 {
    color: #003058;
}

/* Task 5.7*/
main {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Task 5.8*/
#homehero {
    background-image: url("utahtechimages/homehero.jpg");
    background-size: cover; 
    background-position: center;
    height: 300px;
}

/* Task 5.9 */
#studenthero {
    background-image: url("utahtechimages/studenthero.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
}
/* Task 5.10*/
#facultyhero{
    background-image: url("utahtechimages/facultyhero.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
}
nav a { 
    text-decoration: none; 
}
