@font-face {
    font-family: "Funnel Display";
    src: url(../fonts/FunnelDisplay.ttf)
}

@font-face {
    font-family: "Libre Bodoni";
    src: url(../fonts/LibreBodoni-VariableFont_wght.ttf)
}


@font-face {
  font-family: "Helvetica";
  src: url(../fonts/HelveticaNeue-Light.otf)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

header{
text-align: center;
margin-top: 3vw;
margin-bottom: 0vw;
}

header a {
  text-decoration: none;
  color: black;
}

nav li{
  display:flex;
  flex-direction: row;
  font-size: 160%;
  padding-left: 10vw;
  padding-right: 10vw;
  font-family: "Libre Bodoni";
  margin-top:5vw;
  
}

nav ul{
    
    width: auto;
    margin:auto;
}

body{
  background-color:rgb(255, 255, 240);
}

img {
  max-width:100%;
}

#img-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  
  grid-column-gap: 2vw;
  grid-row-gap: 2vw; 
  width:auto;
  margin-left:4vw;
  margin-right:4vw;
  padding:4vw;
  justify-content: center;
}

#img-grid img {
  max-width:100%;
}

#blog-grid{
  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;

}

#about-us-banner{
  
  display:flex;
  flex-direction: row;
  justify-content: center;
  
  background-color: antiquewhite;
}

#about-us-banner img{
  max-width: 15vw;
 
}

#about-us-banner h1{
 margin: 10vw;
  
}






#container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
   
}

footer {
  text-align: center;
  margin-bottom: 3vw;
  font-size: 130%;
  font-family:"Helvetica";
}



