body {background-color: #ffffff; 
color: #666666;
font-family: Verdana;
background-image: linear-gradient(#eeeeee, #ffffff);
background-attachment: fixed;
margin: 0px;
background: #eeeeee
}
header {
    background-color: #003058;
    color: #ffffff;
    font-family: Georgia;
    text-decoration: none;
    grid-column: 2/ -2;
    grid-row: 1/ 2;

    padding: 1rem;
    
    
}

a {
    text-decoration: none;
    color:#ffffff
}

main img {
    float: right;
    padding-left: 2rem;
}
    

h1 {line-height: 140%;
    padding-left: 1em;
    background-color: #003058;
    background-image: url(utahtechlogo.svg);
    background-position: right;
    background-repeat: no-repeat;
    background-origin: content-box;
    margin: 0;




}
nav {background-color: #424242;
    font-weight: bold;
    position:sticky;
    top:0;
    text-decoration: none;
    grid-row: 2/ 3;
    grid-column:2/ -2;
}

nav ul {

    margin:0px;
    padding:0px;
    display:flex;
    flex-flow: row, nowrap;
    list-style: none;
    
}

nav ul li {
    width:100%;
    color:#ffffff;
    padding: 1rem 0rem;
    display:block;
    text-align: center;


}

nav a:hover {
    background-color: #BA1C21
}

h2 {
    color: #424242;
    font-family: Georgia;
    

}
h3 {
    color: #003058;
    
}
dt {color: #003058;
    font-weight: bold;

}



.ut {color: #ba1c21;
    font-weight: bold;

}

footer {font-size: .70rem;
        font-style: italic;
        text-align: center;
        padding: 1rem;
        grid-row: 5/6;
        grid-column: 2/-2;
        

}

#wrapper {

    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

#homehero { background-image: url(studenthero.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3/4;
    grid-column:2/-2;



}
main {padding-left: 2rem;
        padding-right: 2rem;
        grid-row: 4/ 5;
        grid-column:2/ -2;
        background: #ffffff;



}

    #studenthero {height: 300px;
                    background-image: url(studenthero.jpg);
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: center;
                    grid-row: 3/4;
                    grid-column:2/-2;

    }

    #facultyhero {height: 300px;
        background-image: url(facultyhero.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        grid-row: 3/4;
        grid-column:2/-2;


    }

    * {
       box-sizing: border-box; 


    }
