body {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    /*margin: -10px; /* Ajoutez cette ligne pour supprimer la marge globale */
    justify-content: center; /* Centre les éléments horizontalement */
    background-color: #d0d0d0;
    align-items: center;
}

.square {
    width: calc(25%);
    height: 200px;
    margin: 0px;
    padding: 20px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: #e0e0e0;
    /*border-radius: 10px;*/
}

.square:nth-child(even) {
    background-color: #D1D1D1; /* Couleur pour les carrés pairs */
}

.square:nth-child(odd) {
    background-color: #BEBEBE; /* Couleur pour les carrés impairs */
}

/* Styles spécifiques pour les petits écrans (smartphones) */
@media screen and (max-width: 500px) {
    .square {
        width: 100%; /* Un carré à la fois sur les petits écrans */
    }
}
