body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif; /* ou votre police préférée */
}

#gameArea {
    text-align: center;
    padding: 20px;
    width: 90%;
    height: 80%;
}

#gameArea h1 {
    margin-bottom: 20px;
    padding: 10px;
}

#gameArea form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gameArea input[type="text"] {
    margin: 10px 0;
    padding: 10px;
    width: 100%; /* Largeur complète dans le conteneur flex */
    max-width: 480px; /* Largeur maximale pour les grands écrans */
    border-radius: 5px;
    border: 1px solid #ccc;
}

#gameArea input, #gameArea button {
    margin: 10px 0;
    padding: 10px;
    width: 100%; /* Largeur complète dans le conteneur flex */
    max-width: 500px; /* Réduire la largeur maximale pour les grands écrans */
    border-radius: 5px;
}

#title {
    position: fixed;
    top: 2vh;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    z-index: 1000;
}

@media only screen and (max-device-width: 480px), only screen and (max-width: 480px) {
    h1, label {
        font-size: 6vw;
    }
    h2 {
        font-size: 4vw;
    }
    input, button {
        font-size: 5vw; /* Ajuster la taille de la police si nécessaire */
    }
}


