body {
  background: #F5F0E1;
}

/*Header section*/
.nav-bar {
  Padding: 20px;
  font-size: 30px;
  top: 0;
  position: sticky;
  background: #c9b27c;
  text-align: center;
  z-index: 1000;
}

button {
  border: none;
  background: none;
  font-size: 30px;
  transition-duration: 0.4s;
  color: black;
}

a {
  text-decoration: none;
  color: black;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

a:hover {
  color: #F5F0E1;
}

header {
  background: #c9b27c;
  height: 700px;
  width: 100%;
  margin-bottom: 100px;
  text-align: center;
}

h1 {
  margin: 0 auto;
  padding-top: 200px;
  font-size: 9em;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.header-text {
  margin-bottom: 200px;
}

p {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h3 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}


/* Intro section */
.intro {
  text-align: center;
  margin: 80px;
  font-size: 30px;
}


/* Main section */
.main-section {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  margin: 0 auto;
}

img {
  width: 60%;
  margin-top: 20px;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  margin: 0 auto;
  gap: 10px;
  border-radius: 1%;
  transition: all 0.5s;
}


/* POLAROIDS*/
.card-1 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-2 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-3 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-4 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  border: 1px solid #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-5 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-6 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-7 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-8 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-9 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-10 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-11 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}

.card-12 {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -6px #c9b27c;
  margin-bottom: 100px;
  border: 0.5px solid #cac3b1;
}


/* INFO and FORM section */
.info-section {
  background: #F5F0E1;
  display: flex;
}

.info-text {
  background: #F5F0E1;
  text-align: center;
  padding: 10px;
  width: 50%;
}

.form-box {
  background: #F5F0E1;
  padding: 50px;
  width: 50%;
}


/* Footer section*/
footer {
  background: #c9b27c;
  text-align: center;
  padding: 40px;
}


/* Media queries */
@media (max-width: 667px) {
  h1 {
    font-size: 3em;
  }
}

@media (max-width: 1024px) {
  .nav-bar {
    display: none;
  }

  .info-section {
    flex-direction: column;
  }
}

@media (min-width: 668px) and (max-width: 1024px) {
  .main-section {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}

@media (max-width:667px) {
  .main-section {
    grid-template-columns: repeat(1, minmax(250px, 1fr));
  }
}

@media (min-width: 1024px) {

  .card-1 {
    rotate: -10deg;
    margin-bottom: 1px;
  }

  .card-1:hover {
    rotate: 0deg;
  }

  .card-2 {
    rotate: 5deg;
    margin-bottom: 1px;
  }

  .card-2:hover {
    rotate: 0deg;
  }

  .card-3 {
    rotate: -7deg;
    margin-bottom: 50px;
  }

  .card-3:hover {
    rotate: 0deg;
  }

  .card-4 {
    rotate: 4deg;
    margin-bottom: 5px;
  }

  .card-4:hover {
    rotate: 0deg;
  }

  .card-5 {
    rotate: 2deg;
  }

  .card-5:hover {
    rotate: 0deg;
  }

  .card-6 {
    rotate: -2deg;
    margin-bottom: 10px;
  }

  .card-6:hover {
    rotate: 0deg;
  }

  .card-7 {
    rotate: 20deg;
  }

  .card-7:hover {
    rotate: 0deg;
  }

  .card-8 {
    rotate: -7deg;
  }

  .card-8:hover {
    rotate: 0deg;
  }

  .card-9 {
    rotate: -3deg;
    margin-bottom: 10px;
  }

  .card-9:hover {
    rotate: 0deg;
  }

  .card-10 {
    rotate: 10deg;
  }

  .card-10:hover {
    rotate: 0deg;
  }

  .card-11 {
    rotate: -5deg;
  }

  .card-11:hover {
    rotate: 0deg;
  }

  .card-12 {
    rotate: 2deg;
  }

  .card-12:hover {
    rotate: 0deg;
  }
}