/* Style pour une approche mobile-first et responsive */

/* Couleur de fond noir clair */
body {
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Conteneur centré */
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
}

/* Style des blocs */
.block {
    background-color: #ccc;
    border-radius: 15px;
    width: 100px;
    height: 100px;
}

/* Media query pour grands écrans */
@media (min-width: 600px) {
    .block {
        width: 150px;
        height: 150px;
    }
}
