body {
    margin: 0;
    min-height: 100vh; /* Changé de 100% à 100vh pour assurer le centrage vertical complet */
    background-color: #dba209;
    color-scheme: light;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

@media only screen and (max-width: 768px) {
    body {
    background-color: #d7980b;
    }
}

.container {
    text-align: center;
    margin-bottom: 5px;
    position: relative; /* Ajouté pour positionner le bouton Mute par rapport au conteneur */
}

.instagram-link .fa-instagram {
    font-size: 48px;
    color: white;
}

video {
    max-width: 90%;
    max-height: 90vh;
    display: block;
    margin: 0 auto;
}

#muteBtn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
