*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root{
  --text: white;
  --light-green: #edf3ed; 
  --dark-green: #2e362f
}
.section {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
  }

.footer a{
  text-decoration: none;
  color: white;
  font-family: "nexa", sans-serif;
font-weight: 400;
font-style: normal;
}

h1, h2{
font-family: "nexa", sans-serif;
font-weight: 600;
font-style: normal;
}

p{
font-family: "nexa", sans-serif;
font-weight: 400;
font-style: light;
}
.fl-img{
  /* width: 100vh; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}
.fl-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner{
  background-color: var(--light-green);
  text-align: center;
  padding: .5rem;
  margin: 4rem 0 0 0;

}
.footer{
  background-color: var(--dark-green);
  padding: .5rem;
  text-align: center;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.logo{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.logo img{
  width: 30rem;
}



@media only screen and (max-width: 768px){
  .logo img{
    width: 10rem;
  }
  .footer a{
  text-decoration: none;
  color: white;
  font-family: "nexa", sans-serif;
font-weight: 400;
font-style: normal;
font-size: .5rem;
}

h1, h2{
font-family: "nexa", sans-serif;
font-weight: 600;
font-style: normal;
font-size: 1rem;
}

p{
font-family: "nexa", sans-serif;
font-weight: 400;
font-style: light;
}
.fl-img{
        width: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        height: 100vh;
        object-fit: cover;
        object-position: center;
}
.fl-img img{
  width: auto;
  height: 100%;
}
.banner{
  background-color: var(--light-green);
  text-align: center;
  padding: .5rem;
  margin: 2rem 0 0 0;

}
.footer{
  background-color: var(--dark-green);
  padding: .5rem;
  text-align: center;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
}


