body {
    margin-top: 60px;
    background-color: #FFFFFF;
    color: #7DB48A;
    font-family: Verdana;
    font-size: 27px;
}

.img-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* siempre 3 columnas */
    gap: 100px; /* distancia entre imágenes */
}

/* Imágenes responsivas */
.img-gallery img {
    width: 100%;
    height: auto;
}