/* Hintergrundvideo */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Overlay-Inhalt zentriert */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: 'Open Sans', sans-serif;
}

/* Schriftgrössen */
h1 {
  font-size: 30px;
  margin: 0 0 10px 0;
}

p {
  font-size: 15px;
  margin: 0;
}

/* Seitenlayout */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}
/* Overlay-Ebene über dem Video */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0.15;
  z-index: 0;
}
    .overlay-content h1,
    .overlay-content p {
      font-family: 'Bebas Neue', sans-serif;
    }