.content {
  font-family: 'Roboto', sans-serif; /* Utilisez la police importée */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: right;
  z-index: 100;
}

p {
  text-align: right;
  font-style: italic;
  font-size: 12px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Ombre portée pour le paragraphe */
}

body, html {
  height: 100%;
  margin: 0;
}

.video-bg {
  position: fixed; 
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: 100%;
  z-index: -100;
  background: no-repeat;
  background-size: cover;
}

.video-bg overlay {
    background: black;
    opacity: 0.5;
    position: absolute;
    z-index: 1;
    text-align: center;
    margin: 0%;
  }

@media (max-aspect-ratio: 16/9) {
  .video-bg video {
    height: 100%;
  }
}

@media (min-aspect-ratio: 16/9) {
  .video-bg video {
    width: 100%;
  }
}

#muteButton {
  margin-right: 0;
  font-size: 18px;
  color: #fff;
  background-color: red; /* Couleur de fond bleu */
  border: none;
  border-radius: 25px; /* Bords arrondis */
  cursor: pointer;
  transition: background-color 0.3s ease; /* Transition douce pour le survol */
  outline: none; /* Supprime l'outline par défaut au focus */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre légère pour un effet 3D */
}

#muteButton:hover {
  background-color: #2980b9; /* Couleur plus foncée au survol */
}

#muteButton:focus {
  outline: none; /* Supprime l'outline lorsqu'il est focus */
}
