.homepage html, .homepage body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: auto;
}

#background-video-landscape {
  padding: 0; /* Entfernt das Padding */
  width: 100%;
  height: 100vh; /* Passt das Video an die Bildschirmhöhe an */
  object-fit: cover;
}

#block_1000102_content {
  margin: 0;
  padding: 0;
  position: relative;
  top: 0; /* Entfernt unnötigen Abstand */
}

.video-text-container {
  position: absolute;
  top: 65%; /* Mittig im Video */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  margin: 0;
}

.video-title {
  color: white !important;
  font-size: 80px; /* Standardgröße für große Bildschirme */
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin: 0 0 10px;
}

.video-subtitle {
  color: white !important;
  font-size: 40px;
  font-family: 'Oswald', sans-serif;
  margin: 0;
}

/* Anpassungen für Tablets */
@media only screen and (max-width: 1024px) {
  .video-title {
    font-size: 50px; /* Kleinere Schriftgröße für Tablets */
  }

  .video-subtitle {
    font-size: 30px;
  }
}

/* Anpassungen für Smartphones im Hoch- und Querformat */
@media only screen and (max-width: 768px) {
  .video-title {
    font-size: 22px; /* Kleinere Schrift für Smartphones */
  }

  .video-subtitle {
    font-size: 16px;
  }
}

/* Anpassungen für sehr kleine Smartphones */
@media only screen and (max-width: 200px) {
  .video-title {
    font-size: 18px; /* Noch kleinere Schriftgröße für kleine Displays */
  }

  .video-subtitle {
    font-size: 14px;
  }
}