@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  padding: 0 40px;
  background-color: #2F4419;
  font-family: "Playfair Display", serif;
}
body .background-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.5;
}
body .background-img img {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
body .background-img img.top-bg-img {
  top: 0;
  left: 0;
}
body .background-img img.bottom-bg-img {
  bottom: 0;
  right: 0;
}
body .text-main {
  text-transform: uppercase;
  text-align: center;
  margin: 48px auto;
}
body .text-main p {
  letter-spacing: 5px;
  color: #FEE595;
  font-size: 16px;
  font-weight: 400;
}
body .text-main h1 {
  letter-spacing: 2.5px;
  color: #FEE595;
  font-weight: 500;
  font-size: 40px;
}
body .gsap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
body .gsap .box {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FEE595;
}
body .text-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-bottom: 60px;
  color: #FEE595;
  letter-spacing: 2px;
}
body .text-bottom p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}
body .social-icon {
  padding-top: 80px;
}
body .social-icon a {
  color: #FEE595;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}
body .social-icon a:not(:last-child) {
  margin-right: 24px;
}

@media (max-width: 600px) {
  body {
    padding: 0 24px;
  }
  body .text-main {
    margin: 24px auto;
  }
  body .text-main p {
    font-size: 12px;
  }
  body .text-main h1 {
    font-size: 32px;
  }
  body .text-main h1 br {
    display: none;
  }
  body .gsap {
    gap: 5px;
  }
  body .gsap .box {
    width: 8px;
    height: 8px;
  }
  body .text-bottom p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  body .background-img {
    opacity: 0.1;
  }
}/*# sourceMappingURL=styles.css.map */