/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #212121; /* Gray background */
    color: #ffffff; /* White text color for any text */
}

/* Gallery container */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between images */
    justify-content: center; /* Center align gallery items */
    padding: 10px;
}

/* Gallery item */
.gallery a {
    display: block;
    width: 250px; /* Thumbnail width */
    height: 250px; /* Thumbnail height */
    overflow: hidden;
    border: 1px solid #333;
    border-radius: 8px;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the area without distortion */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect */
.gallery a:hover {
    transform: scale(1.1); /* Slightly enlarge the image container */
}

.gallery a:hover img {
    transform: scale(1.1); /* Slightly enlarge the image itself */
}

/* Responsive design */
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery a {
        width: 100px;
        height: 100px;
    }
}
