* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: grid;
    place-items: center;
    background-color: #ecd19e;
}

/* Grid layout celé galerie */
.grid {
    display: grid;
    gap: 10px;
}

.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 4px 10px #0000004D;
}
