body {
    color: #666666; 
    font-family: Arial;
    background: linear-gradient(to bottom, #eeeeee, #ffffff); 
    background-attachment: fixed;
    margin: 0px;
        }
#wrapper {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr) ;
            } 
header {
    background-color: #003058; 
    color: #ffffff; 
    font-family: Georgia;
    grid-column: 2/-2;
    grid-row: 1/2;
        }
header h1 {
    margin-bottom: 0;
    margin: 0;
    }
header a {
    color: #ffffff;
    text-decoration: none;
    }
h1 {
    font-size: 140%; 
    padding: .5rem;
    background-image: url(pictures/utahtechlogo.svg);
    background-repeat: no-repeat;
    background-position: right;
    padding-left: 1em;
    background-origin: content-box;
    margin-bottom: 0;
            }
nav {
    font-weight: bold; 
    background-color: #424242;
    position: sticky;
    top: 0;
    grid-row: 2/3;
    grid-column: 2/-2;
        }
nav a {
    text-decoration: none;
    color: #ffffff;
    padding: 1rem 0rem;
    display: block;
    text-align: center;
    }
nav a:hover {
    background-color: #ba1c21;
    }
nav ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
    }
nav ul li {
    display: inline;
    width: 100%;
    }    
nav ul li a {
    text-decoration: none;
    padding: 20px;
    }
h2 {
    color: #424242; 
    font-family: Georgia;
        }
h3 {
    color: #003058;
        }
dt {color: #000058;
    font-weight: bold;
        }
.ut {
    color: #ba1c21; 
    font-weight: bold;
         }
footer {
    font-size: 0.70rem; 
    font-weight: italic; 
    text-align: center;
    padding: 1rem;
    grid-row: 5/6;
    grid-column: 2/-2;
            }
main {
    padding-left: 2rem;
    padding-right: 2rem;
    grid-row: 4/5;
    grid-column: 2/-2;
    background-color: #ffffff;
        }
#homehero {
    background-image: url(pictures/homehero.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3/4;
    grid-column: 2/-2;
            }
#studenthero{
    background-image: url(pictures/studenthero.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3/4;
    grid-column: 2/-2;
                }
#facultyhero {
    background-image: url(pictures/facultyhero.jpg);
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-row: 3/4;
    grid-column: 2/-2;
                }
/* The '*' symbol is used in CSS as the universal selector.
    Meaning that it applys everything that is specified.*/
* { 
    box-sizing: border-box; 
}
main img {
    padding-left: 2rem;
}