@font-face {
  font-family: "Fredoka";
  src: url("/font/fredoka-one.ttf");
}
@font-face {
  font-family: "Mouse Memoirs";
  src: url("/font/mouse-memoirs.ttf");
}
@font-face {
  font-family: "Boogaloo";
  src: url("/font/boogaloo.ttf");
}
body {
  background-color: rgba(101, 184, 101, 0.5);
  color: white;
  font-family: "Mouse Memoirs", sans-serif;
  overflow-x: hidden;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-image {
  z-index: -999;
  position: fixed;
  background-image: url("/img/junglebg.png");
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.9) blur(5px);
  transform: scale(1.2);
}

.topPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 60rem;
}

.signBox {
  margin-top: auto;
  margin-bottom: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/img/sign.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0px 0px 10px rgb(51, 51, 51));
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.signText {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  text-align: center;
  text-shadow: 5px 5px 2px rgb(51, 51, 51);
  margin: 0;
  padding: 0;
}

.signTextUpper {
  font-size: 5rem;
  margin-top: 3rem;
  margin-bottom: -1rem;
}

.signTextLower {
  font-size: 3rem;
  margin-bottom: 4rem;
}

.downArrow {
  position: absolute;
  bottom: 0;
  margin-bottom: 1rem;
  font-size: 3.5rem;
  color: white;
  animation: fadeIn 1s forwards, bounce 1s ease alternate 0.1s infinite;
  text-shadow: 0px 0px 5px black;
}

.aboutUs {
  filter: drop-shadow(0px 0px 10px rgb(51, 51, 51));
  background-color: rgba(101, 184, 101, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.aboutUsText {
  width: 75%;
  font-size: 3rem;
  text-align: center;
  filter: drop-shadow(0px 0px 2px rgb(51, 51, 51));
}

.aboutUsBgIMG1 {
  position: absolute;
  top: 5rem;
  right: 3rem;
  height: 25rem;
  width: 25rem;
  background-image: url("/img/aboutusbg1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9);
  transform: scale(1.2);
}

.aboutUsBgIMG2 {
  position: absolute;
  bottom: -3rem;
  left: -7rem;
  height: 35rem;
  width: 35rem;
  background-image: url("/img/aboutusbg2.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9);
  transform: scale(1.2);
}

.findUs {
  filter: drop-shadow(0px 0px 10px rgb(51, 51, 51));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}

.findUsTitle {
  font-size: 8rem;
  margin: 0;
  padding: 0;
  filter: drop-shadow(0px 0px 2px rgb(51, 51, 51));
  text-align: center;
}

.locationsContainer {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 75%;
  margin-top: 2rem;
}

.locationBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(101, 184, 101, 0.5);
  filter: drop-shadow(0px 0px 2px rgb(51, 51, 51));
  transition: transform 0.2s ease-in-out;
  padding-bottom: 1.5rem;
  border-radius: 0.25rem;
}

.locationBox:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease-in-out;
}

.locImage {
  width: 25rem;
  height: 15rem;
  background-image: url("/img/loc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}

.locTitle {
  font-size: 3rem;
  text-align: center;
  margin: 0;
  padding: 0;
  filter: drop-shadow(0px 0px 2px rgb(51, 51, 51));
}

.locOpening {
  font-size: 2rem;
  margin: 0;
  padding: 0;
  filter: drop-shadow(0px 0px 2px rgb(51, 51, 51));
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: rgba(101, 184, 101, 0.5);
  filter: drop-shadow(0px 0px 2px rgb(51, 51, 51));
  padding: 1rem;
  font-size: 2rem;
}

.foottext {
  margin: 0;
  padding: 0;
  filter: drop-shadow(0px 0px 2px rgb(51, 51, 51));
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-0.5rem);
  }
}
@media (max-width: 480px) {
  .signBox {
    background-image: url("/img/sign.png");
    background-size: cover;
    width: 100%;
    background-position-x: 51%;
  }
  .signTextUpper {
    font-size: 20vw;
    margin-top: 10vw;
  }
  .signTextLower {
    font-size: 10vw;
    margin-bottom: 5vw;
  }
  .downArrow {
    font-size: 2.5rem;
  }
  .aboutUsText {
    font-size: 2rem;
    width: 90%;
  }
  .aboutUsBgIMG1 {
    display: none;
  }
  .aboutUsBgIMG2 {
    display: none;
  }
  .findUsTitle {
    font-size: 3rem;
  }
  .locationsContainer {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    width: 90%;
  }
  .locImage {
    width: 100%;
    height: 15rem;
  }
  .locTitle {
    font-size: 2.5rem;
  }
  footer {
    font-size: 1.5rem;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}/*# sourceMappingURL=styles.css.map */