.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    display: block;
}



/* Add more styles as needed */
