body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Fond noir */
    color: #fff; /* Écriture blanche */
    text-align: center;
    padding: 20px;
    margin: 0;
}

h1 {
    font-size: 2em; /* Taille de l'écriture plus grande */
}

form {
    max-width: 90%;
    margin: 0 auto;
}


label, input, select, button {
    font-size: 1.2em; /* Taille de l'écriture plus grande */
    display: block; /* Affichage sur toute la largeur */
    margin: 10px 0; /* Espacement */
    margin: 0 auto;
    border-radius: 15px;
    border:none;
    
}

input, select, button {
    padding: 10px;
    margin: 0 auto;
}

#timerDisplay {
    font-size: 3em; /* Grande taille pour le timer */
    margin: 20px 0;
}

/* Style pour les appareils mobiles */
@media screen and (max-width: 600px) {
    label, input, select, button {
        font-size: 1.5em; /* Taille plus grande sur mobile */
    }

    #timerDisplay {
        font-size: 4em; /* Taille très grande pour le timer sur mobile */
    }
}
