/* Gallery Styling */
.gallery-body {
    text-align: center;
    padding: 20px;
}

.gallery-body h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 6rem;

}

.gallery-img {
    width: 30%; /* Display three images per row on larger screens */
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-img {
        width: 45%; /* Display two images per row on tablets */
    }
}

@media (max-width: 480px) {
    .gallery-img {
        width: 100%; /* Display one image per row on small screens */
    }
}
