*{
    box-sizing: border-box;
}

#wrapper{
    display:grid;
}

nav{
 font-weight:bold;
 background-color:peru;
 grid-row:1/1;
 grid-column:1/9;
 text-align:left;
}

nav a{
    display:block;
    text-decoration:none;
    font-family:'Gill Sans';
}

nav ul{
    display:flex;
    list-style:none;
    justify-content:space-evenly;
}

img{
  grid-row:1/1;
  grid-column:1/2;  
  height:100px;
}

#homehero{
   grid-row:1/3;
   grid-column:1/9; 
   background-image:url(images/hero.jpg);
   background-size:cover;
   background-repeat:no-repeat;
   background-position:center;
   height:400px;
}
 #image1{
     background-image:url(images/trophy.jpg);
     height:200px;
     background-repeat:no-repeat;
     padding-left:2rem;
 }

 body{
     background-color:lightgoldenrodyellow;
 }