 /* Carousel nimmt die volle Breite ein */
  #carouselExampleCaptions {
    width: 100%;
  }


/* Zusätzliche Stile für größere Bildschirme */
@media (min-width: 992px) {
  .carousel-content {
    /* Hier können Sie spezifische Anpassungen für größere Bildschirme vornehmen */
    padding: 1.5rem;
    margin: auto;
  }
}

@media (min-width: 992px) {
    #carouselExampleCaptions {
        max-width: 100%;
    }
}



  /* Content ist 100% mittig ausgerichtet */
  .carousel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 40vh;
    padding: 2rem;
      margin: auto;
    color: #000;
  }

  /* Sterne */
  .stars {
    color: #f4b400;
    font-size: 2rem;
    margin-bottom: 1.3rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
  }





  
  

  

  /* Button 
  .btn-warning {
    font-size: clamp(1rem, 2vw, 1.3rem);
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
  }*/