body {
    display: block;
    margin: 0;
    padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: black;
  height: auto;
  color: white;
  margin-top: 0;
  padding-top: 0;
}

nav .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 80%;
}

.menu-toggle {
  display: none;
}


.bfMain {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.mainNav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 30px;
}

.bfMain a{
  color: white;
  text-decoration: none;
  font-style: none;
}

.mainNav h3 {
}

.instaIcon{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    background: rgba(227, 212,189, 1);
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 30px;
}

.main div {
    margin: 0;
    padding: 0;
}

.main h1 {
}

.main a {
  text-decoration: none;
  font-style: none;
  color: black;
  font-weight: 400;
  font-size: 2.5rem;
}

main .main .imgContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  justify-items: center;
  align-items: center;
}

.main div img {
  height: auto;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 0 10px rgb(102, 87, 64);
}

.main div + div {
    
}

.main div + div p {
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: 400;
}

.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
    background: black;
    color: white;

}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.container3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background: rgba(227, 212,189, 1);
}


.container2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
}

.container2 div {
  text-align: center;
}

.container2 p {
  font-weight: 400;
  font-size: 1.6rem;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(227, 212,189, 1);
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  width: 30%;
  text-align: center;
  min-width: 200px;
  margin: 50px;
  line-height: 1.6rem;
  font-weight: 400;
  background: rgba(255,165,0);
  box-shadow: 0 0 10px rgb(102, 87, 64);
  padding: 20px;
}

label {
  font-size: 1.6rem;
  line-height: 1.8rem;
  
}

input {
  height: 2rem;
  border-radius: 25px;
  margin: 0 20px 20px 20px;
  text-align: center;
}

button {
    height: 50px;
    width: 200px;
    grid-column: span 2;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: rgb(226, 72, 6);
    color: white;
    border: none;
    border-radius: 70px;
    font-size: 18px;
    cursor: pointer;
    color: white;
    border: 1px rgba(227, 212,189, 1) solid;
    align-self: center;
}



footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    height: 200px;
    width: 100%;
    color: white;
    padding-top: 20px;
    text-align: center;
}

@media (max-width: 767px) {

  .mainNav {
    flex-direction: column;
  }


  .menu-toggle {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    z-index: 200;
  }

  /* Slide-down nav */
  .mainNav {
    position: fixed;
    top: -100vh; /* Hidden above */
    left: 0;
    width: 100%;
    background-color: #222;
    flex-direction: column;
    gap: 20px;
    padding: 80px 20px 20px;
    transition: top 0.4s ease;
    z-index: 150;
    display: flex;
  }

  /* When active, slide down */
  .mainNav.active {
    top: 0;
  }

  .instaIcon {
    margin-top: -15px;
  }

  .menu-toggle {
    display: active;
    align-self: center;
  }

  .backimg img{
    width: 100%;
  }

  .main h1 {
    text-align: center;
  }

  main .main .imgContainer {
    grid-template-columns: repeat(2, 1fr);
  }

  .container2 {
    flex-direction: column;
  }

  label {
    font-size: 1.4rem;
  }










}