

h1 {
    background-color: #003068;
    color: #FFFFFF;
    font-family: Georgia;
    
}
h3{ color: #003058;
    
}
body {
    background-color: #FFFFFF;
    color: #666666;
    font-family: Arial;
    background-image: linear-gradient(180deg, #eeeeee 30%, #ffffff 100%);
    background-attachment: fixed;

    

}
main{
    padding-left: 2rem;
    padding-right: 2rem;

    
}
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-bottom: 0;
    /* 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. */
}
nav {
    background-color: #f3f3f3;
    font-weight: bold;
    padding: 0.5rem 0.5rem 0.5rem 2.0rem; 
    /* padding goes top right bottom left */

}
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;
    
}
#wrapper{
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    background-color: #ffffff;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 0px 3px 3px rgba(66, 66, 66, 0.3);
  
}
#homehero{
    background-image: url("homehero.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
    
}
#studenthero{
    background-image: url("studenthero.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
    
}
#facultyhero{
    background-image: url(facultyhero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
}
nav a {
    text-decoration: none; 
}