body {
  background-color: black;
}

h1 {
  color: white;
  font-weight: 400;
}

.hero-section {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-optical-sizing: auto;
  font-size: clamp(4rem, 8vw + 2rem, 157px);
  background-position: center;
  height: 100vh;
  color: rgb(255, 255, 255);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Different background images for different screen sizes */
@media screen and (max-width: 768px) {
    .hero-section {
      transform: translateY(-5vh);
      font-size: 2rem;
      font-weight: 400;
      letter-spacing: -0.02em;
    }
  }