body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Fond noir initial */
    animation: backgroundBlink 0.2s step-end infinite alternate;
    font-family: 'Roboto', sans-serif;


}

.centered {
    text-align: center;
    color: #FFF; /* Texte blanc */
    animation: textBlink 0.07s step-end infinite alternate;
}

h1 {
    font-size: 9em;
}

.coming-soon {
    font-size: 2em;
}

@keyframes backgroundBlink {
    50% { background-color: #FFF; } /* Fond blanc pour le clignotement */
}

@keyframes textBlink {
    50% { color: #000; } /* Texte noir pour le clignotement */
}
