/* Scroll Container: Gives us the vertical space to scroll */
.scroll-container {
  height: 100vh; /* how much you can scroll */
  position: relative;
  z-index: 1; /* main content */
}

/* finally works as intended */
#parallax-bg {
  filter: none;
  opacity: 1;
}

.hero-content {
  height: 100vh; /* full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0;
}

.hero-content h1 {
  color: rgb(255, 255, 255);
  font-size: calc(clamp(1.5rem, 9vw, 6rem) / 1);
  margin: 0;
  margin-bottom: 0.5rem;
}

.hero-content h3 {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: clamp(1rem, 3vw, 2rem);
}

.title {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.title img {
  height: calc(clamp(1.5rem, 9vw, 6rem) / 1);
}

.title video {
  height: calc(clamp(3rem, 18vw, 12rem) / 1);
  border-radius: 0.5rem;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
}