@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6705882353), rgba(0, 0, 0, 0.6705882353)), url("../images/hotel.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-items: center;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); /* Slight upward movement */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Back to original position */
  }
}
body main {
  width: 80%;
  height: auto;
  animation: fadeInUp 1s ease-in-out;
  /* Tablet (Portrait and Landscape) */
  /* Tablet Pro */
  /* Mobile (Portrait and Landscape) */
}
body main h1 {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 3vw;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
body main h2 {
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Open Sans", serif;
  font-size: 1vw;
  margin-top: 1vw;
  font-weight: 500;
}
body main p {
  width: 100%;
  font-size: 0.9vw;
  color: #fff;
  text-align: center;
  margin-top: 1vw;
  font-family: "Open Sans", serif;
}
body main p a {
  color: #f8a82f;
  text-decoration: none;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  body main h1 {
    font-size: 4vw; /* Slightly larger for readability */
  }
  body main h2 {
    font-size: 2vw;
  }
  body main p {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 834px) {
  body main h1 {
    font-size: 5vw;
  }
  body main h2 {
    font-size: 2.5vw;
  }
  body main p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 480px) {
  body main h1 {
    font-size: 6.5vw; /* Large enough for small screens */
  }
  body main h2 {
    font-size: 4vw;
  }
  body main p {
    font-size: 3.5vw;
  }
}/*# sourceMappingURL=main.css.map */