   .carousel {
      position: relative;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.1);
      transition: opacity 2s ease-in-out, transform 4s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .quote {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 24px;
      font-weight: bold;
      color: white;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
      text-align: center;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.7); /* Sfondo scuro trasparente */
      border-radius: 10px; /* Arrotonda i bordi */
    }
