.hero-section {
  position: relative;
  width: 100%;
  height: 75vh;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  color: var(--white-color);
  text-align: center;
  font-size: 2.5rem;
  width: 100%;
}

.logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.logo {
  width: 300px;
  height: auto;
}

#fullscreenVideo {
  width: 0;
  height: 0;
  position: absolute;
  top: -1000px;
  z-index: -100;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

video::cue {
  background-color: rgba(0, 0, 0, 1);
  color: white;
  font-size: 1.2em;
  padding: 5px 10px;
  border-radius: 5px;
}