  /* Anpassungen für die Carousel-Beschriftung auf kleinen Bildschirmen */
  .carousel-caption {
    top: 0;
    bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

#carouselExample {
    height: 70vh; /* 50% der Bildschirmhöhe */
    overflow: hidden;
  }
  
  .carousel-inner {
    height: 100%;
  }
  
  .carousel-item {
    height: 100%;
  }
  
  .carousel-item img {
    object-fit: cover;
    height: 100%;
  }
  
  
  .carousel-caption h1 {
    font-size: 4.5rem;
    font-weight: bold;
  }
  
  .carousel-caption p {
    font-size: 1.25rem;
    font-weight: bold;
  }
  
    /* Verkleinern der Schriftgröße auf kleineren Bildschirmen */
    @media (max-width: 768px) {
      .carousel-caption h1 {
        font-size: 2rem; /* Kleinere Schriftgröße für Überschrift */
      }
      .carousel-caption p {
        font-size: 1rem; /* Kleinere Schriftgröße für Untertext */
      }
    }