* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
header {
  background-color: var(--cream);
  box-shadow: 0 2px 5px var(--brown-light);
  height: 75px;
}
.links a {
  color: var(--brown-light);
  text-shadow: none;
}
.cart a {
  color: var(--brown-light);
  text-shadow: none;
}
@media (max-width: 700px) {
  .humburger i {
    color: var(--brown-light);
  }
  .links a {
    color: var(--cream);
  }
}
.big-container {
  width: 100%;
  height: auto;
  background-color: var(--rose-pink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 25px 40px 25px;
  align-items: center;
}
.big-container h2 {
  color: var(--cream);
  text-align: center;
  font-size: 3.5rem;
  font-family: "Playfair", serif;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 30px;
}
.big-container .container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.big-container .container img {
  transform: rotate(-20deg);
}
#contact-form {
  width: 100%;
  background-color: var(--rose-pink-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 20px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.4) 3px 3px 10px;
}
#contact-form input,
textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  background-color: transparent;
  border: 1px solid var(--brown-light);
  border-radius: 20px;
  color: var(--olive-green-light);
  font-family: "Playfair", serif;
  font-weight: 500;
  font-size: 1.1rem;
}
#contact-form label {
  font-family: "Playfair", serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--brown-light);
  margin-bottom: 5px;
}
#contact-form button {
  padding: 7px 20px;
  width: 100%;
  text-align: center;
  margin: auto;
  background-color: var(--olive-green-light);
  border: none;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  color: var(--cream);
  font-weight: 600;
  font-family: "Playfair", serif;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
#contact-form button:hover {
  background-color: var(--olive-green);
}
#contact-form button:active {
  transform: scale(1.3);
}
#contact-form span {
  font-size: 1rem;
  font-family: "Playfair", serif;
  display: flex;
  align-items: center;
  color: var(--olive-green);
  margin: auto;
  margin-top: 10px;
  text-align: center;
  display: none;
}
@media (max-width: 637px) {
  #contact-form span img {
    display: none;
  }
}
@media (max-width: 550px) {
  .big-container .container {
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 80px;
    height: auto;
  }
  .big-container .container img {
    width: 200px;
  }
}
@media (max-width: 350px) {
  #contact-form span {
    font-size: 0.8rem;
  }
}
.information {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--olive-green);
  padding: 30px;
}
.information h3 {
  color: var(--cream);
  text-align: center;
  font-size: 3.5rem;
  font-family: "Playfair", serif;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
}
.information hr {
  border: 1px solid var(--rose-pink);
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 50%;
}
.information .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.information .info .details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.information .info .details p,
.information .info .details p a {
  color: var(--cream);
  font-size: 1.2rem;
  font-family: "Playfair", serif;
  font-weight: 600;
  text-decoration: none;
}
.information .info .frame iframe {
  border-radius: 10px;
  width: 100%;
}
.information .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.information .social-media a {
  color: var(--cream);
  font-size: 1.4rem;
  font-family: "Playfair", serif;
  font-weight: 600;
  background-color: var(--olive-green-light);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.information .social-media a:hover {
  transform: scale(1.2);
  box-shadow: rgba(0, 0, 0, 0.4) 3px 3px 10px;
  background-color: var(--cream);
  color: var(--olive-green-light);
}
@media (max-width: 740px) {
  .information .info .frame iframe {
    width: 450px;
  }
}
@media (max-width: 665px) {
  .information .info .frame iframe {
    width: 300px;
  }
}
@media (max-width: 520px) {
  .information .info .frame iframe {
    width: 250px;
  }
}
@media (max-width: 470px) {
  .information .info .frame iframe {
    width: 200px;
  }
}
@media (max-width: 420px) {
  .information .info {
    flex-wrap: wrap;
  }
}
