/* Style for the gallery container */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
    margin: 0 auto;
    max-width: 1000px;
}

/* Style for each image */
.gallery a img {
    width: 100%;
    height: auto;
    border-radius: 5px; /* optional: for rounded corners */
    transition: transform 0.3s ease; /* optional: for a zoom effect on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* optional: for adding shadow */
}

/* Hover effect on images */
.gallery a:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
