/* {box-sizing: border-box;}*/

body {
    background-color: #BA8C63;
     font-family: Verdana, sans-serif;
  margin:0px 0px 0px 0px 0px 0px;

  }


 
   

    .topnav {
      background-color: #333;
      overflow: hidden;
      position: fixed;
    }
      

.navbar {
    background-color:darkgray;
    text-align:left;
    Font-size:20px;
    padding: 5px;
    list-style-type: none;
    border-radius: 5px;
    margin: 10px;
   
    }

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #333;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns:auto auto auto auto auto auto;  /*repeat(7, 1fr);7 columns*/
  grid-gap:10px;
  grid-template-rows:100px 100px 100px 100px 100px 100px 100px /*100px*/;
  }









.section3 {
  grid-column:2;
  grid-row:1;
  color:white;
  text-align:center;
  Font-size:20px;
  background-color: brown;
}


.hero-text {
  text-align: center;
  position: absolute;
 top: 50%;
 left: 50%;
 bottom: 80%;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  font-size: 50px;
}

.imgs{
  background-color:#014421;
}


.section4{
  grid-column:2;
  grid-row:1;
  color:white;
  text-align:center;
  Font-size:20px;
  background-color: brown;
}

.imgs2{
  background-color:#014421;
}








@media only screen and (max-width: 600px) {
  body {
    background-color: #335B96;
  }
}