

header {
    background-color: #003068;
    color: #FFFFFF;
    font-family: Georgia;
    grid-row: 1/2;
    grid-column: 2/8;
}
h3{ color: #003058;
    
}
body {
    background-color: #FFFFFF;
    color: #666666;
    font-family: Arial;
    background-image: linear-gradient(180deg, #eeeeee 30%, #ffffff 100%);
    background-attachment: fixed;
    margin: 0px;
    

}

main{
    padding-left: 2rem;
    padding-right: 2rem;
    grid-row: 4  / span 1;
    grid-column: 2/ -2;
    background-color: #ffffff;

    
}
header h1 {
    line-height: 140%;
    padding: 0.5rem;
    background-image: url("utahtechlogo.svg") ;
    background-repeat: no-repeat;
    background-position: right ;
    padding-left: 1em;
    background-origin: content-box;
    margin: 0;
    grid-row: 1/ span 2;
    grid-column: 2 / -2;
    /* Modify the style rules for the h1 element selector.  */
    /* Configure the utahtechlogo 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. */
}
header a{
    text-decoration: none;
    color: #ffffff;
}
header h1 a{
    text-decoration: none;
}
nav {
    background-color: #424242;
    font-weight: bold;
    position: sticky;
    top: 0;
     grid-row: 2/ span 1 ;
     grid-column: 2/ -2;
    /* padding goes top right bottom left */

}
nav ul{
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;

}
nav ul li{
    width: 100%;
}
header h2 {
    color: #424242;
    font-family: Georgia
    
}
dt {
    color: #003058;
    font-weight: bold;
    
}
.ut {
    color: #BA1C21;
    font-weight: bold;
    
}
footer{
    text-align: center;
    font-style: italic;
    font-size: 0.70rem;
    padding: 1rem;
    grid-row: 5/ span 1;
    grid-column: 2/-2 ;
    
}
#wrapper{
    display: grid;
    grid-auto-rows: minmax(12px, auto); ;
    grid-template-columns: minmax(0px, 1fr) repeat(6,minmax(0, 175px)) minmax(0px, 1fr)
    
  
}
#homehero{
    background-image: url("homehero.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
    grid-row: 3 / span 1; /* Occupies row 3 */
    grid-column: 2 / -2;
    
}
#studenthero{
    background-image: url("studenthero.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
    grid-row: 3 / span 1; /* Occupies row 3 */
    grid-column: 2 / -2;
    
}
#facultyhero{
    background-image: url(facultyhero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    grid-row: 3 / span 1; /* Occupies row 3 */
    grid-column: 2 / -2;
    
}
main img {
    float: right;
    padding-left: 2rem;
}

nav a {
    text-decoration: none; 
    color: #FFFFFF;
    padding: 1rem 0rem;
    display: block;
    text-align: center;
}
nav a:hover{
    background-color: #BA1C21;
}
*{ box-sizing: border-box;

}
