body {
    background-color: white;
    background-image: url('./img/oooscillate.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .carousel {
      height: 80vh;
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .video {
    flex: 0 0 100%;
    margin-right: 0px; /* Adjust margin as needed */
  }
  
  .video:last-child {
    margin-right: 0;
  }
  
  iframe {
    width: 100%;
      height: 100%;
  }
  
  button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    font-size: 30px;
  }
  
  .prev {
    left: 10px;
    height: 50%;
  }
  
  .next {
    right: 10px;
    height: 50%;

  }
  
  .specs {
      width: 100vw;
      height: 100vh;
      display:flex;
      justify-content: center;
      align-items: center;
  }
  
  /* Pour les téléphones mobiles en mode portrait */
  @media only screen and (max-width: 480px) {
      .carousel {
          height: 40vh;
      }
  }
  
  /* Pour les téléphones mobiles en mode paysage et les tablettes en mode portrait */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
      .carousel {
          height: 40vh;
      }
      /* Styles spécifiques pour les téléphones mobiles en mode paysage et les tablettes en mode portrait */
  }
  
  /* Pour les tablettes en mode paysage, les ordinateurs portables et les ordinateurs de bureau */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
      /* Styles spécifiques pour les tablettes en mode paysage, les ordinateurs portables et les ordinateurs de bureau */
  }