@charset "utf-8";
/* CSS Document */

/* General gallery styling */
.gallery {
    padding: 40px 20px;
    text-align: center;
    background-color: #f8f8f8;
	color: #000000;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.gallery p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

/* Grid layout for the gallery images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery h2 {
        font-size: 2rem;
    }

    .gallery p {
        font-size: 1rem;
    }
}
