#playButtonGif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.playButtonDesign {
    text-decoration: none; /* Aucun soulignement pour les liens */
    font-family: 'ERROR 441', sans-serif; /* Assurez-vous que la police est chargée ou disponible */
    color: white; /* Couleur du texte des liens */
    border: 2px solid white;
    background-color: rgba(22, 21, 27, 0.193); /* Aucun fond pour correspondre au style du lien */
}

.playButtonDesign:hover {
    animation: bg_colorChange 3s infinite;
}

.video-controls {
    position: relative;
    border : 2px solid white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    bottom: 0;
}

#playPauseButton, #volumeButton {
    background-color: rgba(22, 21, 27, 0.193); /* Aucun fond pour correspondre au style du lien */
    font-size: 2vw;
    color: white;
    font-family: 'ERROR 441';
    text-transform: uppercase;
    padding: 10px;
}

.progress-bar-container {
    width: 100%;
    height: 50px; /* ou la hauteur que vous voulez pour la barre */
    /* autres styles... */
}

#progressBar {
    width: 0%;
    height: 100%;
    animation: bg_colorChange 3s infinite;
    /* autres styles... */
}

@media (min-width: 769px) {

    #playButtonDesktop {
        position: absolute;
        top: 43%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .playButtonDesign {
        font-size: 7vw;
        padding: 0% 4%;
    } 
}


/* Pour les écrans mobiles */
@media (max-width: 768px) {
    .playButtonDesign {
        font-size: 20vw;
        padding: 4% 10%;
    }

    #playPauseButton, #volumeButton {
        font-size: 6vw;
 
    }

    #currentTime {
        font-size: 6vw;
    }
}