.red
{
    color: red;
}
body {
             margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;

            min-height: 100vh; /* Prend toute la hauteur de la fenêtre */
            background-color: grey; /* Fond gris */
}
.conteneur {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Style pour le footer */
/* Footer en bas */
footer {
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 15px 0;
    width: 100%;
}

footer a {
    color: #333;
    font-weight: bold;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    color: #007bff;
}
       #full-screen-gif {
            transform: scale(1.5); /* Modifiez le facteur d'agrandissement ici */
            transform-origin: center; /* Centre l'agrandissement */
            width: auto; /* Largeur automatique */
            height: auto; /* Hauteur automatique */
            display: block; /* Évite l'espace supplémentaire */
}
.centrer {
    width: 50%; /* Ou une autre largeur définie */
    margin: 0 auto; /* Centre horizontalement */
    text-align: center; /* Centre le texte à l'intérieur */
}
/* Style pour le conteneur de texte animé */
.texte-vague {
    display: flex;
    font-size: 3em;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    color: #fff;
     position: absolute; /* Permet de superposer le texte */
            top: 50%; /* Centre verticalement */
            left: 50%; /* Centre horizontalement */
            transform: translate(-50%, -50%); /* Ajuste le centre exact */
            font-size: 2.5em; /* Taille du texte */
            font-weight: bold; /* Met le texte en gras */
            text-align: center; /* Centre le texte */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombre pour la lisibilité */
}
.audio-container {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    margin: 20px 0; /* Ajoute un peu d'espace en haut et en bas */
    position: relative; /* Permet l'utilisation de z-index */
    z-index: 10; /* Assure que le conteneur est au premier plan */
}
/* Animation de vague et de couleur */
.texte-vague span {
    animation: vague 1.5s ease-in-out infinite, clignoter 0.5s infinite alternate;
    display: inline-block;
}

/* Animation vague */
@keyframes vague {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Animation clignotement coloré */
@keyframes clignoter {
    0% { color: #ff00ff; }
    20% { color: #00ffff; }
    40% { color: #ffff00; }
    60% { color: #ff0000; }
    80% { color: #00ff00; }
    100% { color: #0000ff; }
}
        .texte-vague span:nth-child(1) { animation-delay: 0s; }
        .texte-vague span:nth-child(2) { animation-delay: 0.1s; }
        .texte-vague span:nth-child(3) { animation-delay: 0.2s; }
        .texte-vague span:nth-child(4) { animation-delay: 0.3s; }
        .texte-vague span:nth-child(5) { animation-delay: 0.4s; }
        .texte-vague span:nth-child(6) { animation-delay: 0.5s; }
        .texte-vague span:nth-child(7) { animation-delay: 0.2s; }
        .texte-vague span:nth-child(8) { animation-delay: 0.4s; }
        .texte-vague span:nth-child(9) { animation-delay: 0.5s; }
        .texte-vague span:nth-child(10) { animation-delay: 0.4s; }
        .texte-vague span:nth-child(11) { animation-delay: 0s; }
        .texte-vague span:nth-child(12) { animation-delay: 0.1s; }
        .texte-vague span:nth-child(13) { animation-delay: 0.2s; }
        .texte-vague span:nth-child(14) { animation-delay: 0.3s; }
        .texte-vague span:nth-child(15) { animation-delay: 0.4s; }
        .texte-vague span:nth-child(16) { animation-delay: 0.5s; }
        .texte-vague span:nth-child(17) { animation-delay: 0.2s; }
        .texte-vague span:nth-child(18) { animation-delay: 0.3s; }
        .texte-vague span:nth-child(19) { animation-delay: 0.4s; }
        .texte-vague span:nth-child(20) { animation-delay: 0.5s; }
        .texte-vague span:nth-child(21) { animation-delay: 0.2s; }
        .texte-vague span:nth-child(22) { animation-delay: 0.2s; }
        .texte-vague span:nth-child(23) { animation-delay: 0.4s; }
        .texte-vague span:nth-child(24) { animation-delay: 0.5s; }
        .texte-vague span:nth-child(25) { animation-delay: 0.4s; }
