
/* Universal selector */
* {
  box-sizing: border-box;
}





body {
    background: linear-gradient(to bottom, #eeeeee, #ffffff);
    background-attachment: fixed;
    color: #666666;
    font-family: Verdana, Arial, sans-serif;
    margin: 0;
  }
/* #wrapper selector */
/* #wrapper selector */
#wrapper {
  display: grid;
  grid-auto-rows: (0px,auto);
  grid-template-columns:minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}


   
   
  header {
    grid-row: 1 / 2; /* Start at row 1 */
    grid-column: 2 / -2;
   
    background-color: #003058;
    
    
    }
  header a{
  
    color: #FFFFFF;
    font-family: Georgia, serif;
    text-decoration: none;
  }
  .ut{

    font-weight: bold;
    color: red;

  }
   
  header h1 {
    line-height: 140%;
    padding: 0.5rem;
    background-image: url('utahtechlogo.png');
    background-position: right;
    background-repeat: no-repeat;
    padding-left: 1em;
    background-origin: content-box;
    margin: 0;
    
  }
   
  nav {
    grid-row: 2 / 3; /* Start at row 2 and end at row 3 */
    grid-column: 2 / -2;
    font-weight: bold;
    background-color: #424242;
    position: sticky;
    top: 0;
   

  }
 
  nav ul {
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
    display: flex; /* Use flex display */
    flex-flow: row nowrap; /* Set it as a row with nowrap to prevent wrapping */
    list-style-type: none; /* Remove list-style bullets/numbers */
  }


 


   
  footer {
    font-size: 0.70rem;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    grid-row: 5 / 6; /* Start at row 5 and end at row 6 */
    grid-column: 2 / -2; 
  }
   
  h3 {
    color: #003058;
  }
   
  main {
    padding: 0 2rem;
    grid-row: 4 / 5; /* Start at row 4 and end at row 5 */
    grid-column: 2 / -2; /* Start at column 2 and end at the second-to-last column */
    background: #ffffff;
  }
   
  #homehero {
    grid-row: 3 / 4; /* Start at row 3 and end at row 4 */
    grid-column: 2 / -2;
    height: 300px;
    background-image: url('homehero.jpg');
    background-size: cover;
    background-position: center;
  }
   
  #studenthero {
    grid-row: 3 / 4; /* Start at row 3 and end at row 4 */
    grid-column: 2 / -2;
    height: 300px;
    background-image: url('studenthero.jpg');
    background-size: cover;
    background-position: center;
  }
   
  #facultyhero {
    grid-row: 3 / 4; /* Start at row 3 and end at row 4 */
    grid-column: 2 / -2;
    height: 300px;
    background-image: url('facultyhero.jpg');
    background-size: cover;
    background-position: center;
  }
  

  
  nav a {
    text-decoration: none;
    
    color: #FFFFFF; /* Set text color to white (#FFFFFF) */
    padding: 1rem 0rem; /* Add padding 1rem top and bottom, 0rem left and right */
    display: block; /* Set display to block */
    text-align: center; /* Center-align the text */
   

  }
  nav ul li {
    width: 100%; /* Set the width to 100% */
  }
  nav a:hover {
    background-color: #BA1C21; /* Set the background color to #BA1C21 when hovered */
  }
  
  main img{


    float: right;
    padding-left: 2rem;

  }