.logo-clignotant {
    animation-duration: .8s; /* Durée d'un cycle d'animation */
    animation-name: clignoter;
    animation-iteration-count: infinite; /* Répétition infinie */
}

@keyframes clignoter {
    0% { opacity: 1; } /* Visible au début */
    40% { opacity: 0; } /* Disparaît */
    100% { opacity: 1; } /* Devient à nouveau visible */
}
