.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  text-align: center;
  border-bottom: 1px solid #ae445a;
  background-image: url("/assets/banner.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner-text {
  font-size: 10rem;
  font-weight: 700;
  font-family: "gemunu", sans-serif;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), -2px -2px 4px rgba(0, 0, 0, 0.6),
    2px -2px 4px rgba(0, 0, 0, 0.6), -2px 2px 4px rgba(0, 0, 0, 0.6);
}

.banner-subtext {
  height: 175px;
  display: flex;
  align-items: end;
  color: #fff;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  font-family: "gemunu", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6), -2px -2px 4px rgba(0, 0, 0, 0.6),
    2px -2px 4px rgba(0, 0, 0, 0.6), -2px 2px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1200px) {
  .banner-text {
    font-size: 8rem;
  }

  .banner-subtext {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .banner-text {
    font-size: 6rem;
  }

  .banner-subtext {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .banner-text {
    font-size: 5rem;
  }

  .banner-subtext {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .banner-text {
    font-size: 5rem;
  }

  .banner-subtext {
    font-size: 1.2rem;
  }
}
