body {
    background:linear-gradient(to bottom, #eeeeee, #ffffff);
    background-attachment: fixed; 
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
}

header {
    background-color: #003058;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #ffffff;
    grid-area: 1 / 2 / 2 / 8;
}

header a {
    background-image: url(utahtechlogo.svg);
    text-decoration: none;
    color:#ffffff
}

h1 {
    line-height: 140%;
    padding: .5rem .5rem .5rem 1em;
    background-image: url(utahtechlogo.svg);
    padding-left: 1em;
    background-position: right;
    background-repeat: no-repeat;
    background-origin: content-box;
    margin:0;
}

nav {
    font-weight: bold;
    background-color:#424242;
    position:sticky;
    top: 0;
    grid-area: 2 / 2 / 3 / 8;
}

nav ul {
    list-style-type: none;
    margin:0;
    padding:0;
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
}

nav ul li {
    width: 100%;
}

nav a {
    color:#ffffff;
    padding: 1rem 0rem;
    display:block;
    text-align: center;
    text-decoration: none;
}

nav a:hover {
    background-color: #ba1c21;
}

h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #424242;
}

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

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

footer {
    font-size:.70rem;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    grid-area: 5 / 2 / 6 / 8;
}
#wrapper {
display: grid;
grid-auto-rows: minmax(0px, auto);
grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0px, 175px)) minmax(0px, 1fr);
}

h3 {
    color: #003058;
}

main {
    padding-left: 2rem;
    padding-right: 2rem;
    grid-area: 4 / 2 / 5 / 8;
    background-color: #ffffff;
}

#homehero {
    height: 300px;
    background-image: url(homehero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    grid-area: 3 / 2 / 4 / 8;
}

#studenthero {
    height: 300px;
    background-image: url(studenthero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    grid-area: 3 / 2 / 4 / 8;
}

#facultyhero {
    height: 300px;
    background-image: url(facultyhero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    grid-area: 3 / 2 / 4 / 8;
}

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



* {
    box-sizing: border-box;
}