/* General styling for the gallery */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-family: Arial, sans-serif;
}

/* Styling for the main image */
.main-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

/* Thumbnail container styling */
.thumbnails {
    display: flex;
    gap: 10px;
}

/* Each thumbnail */
.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

/* Thumbnail images */
.thumbnail img {
    mix-blend-mode: multiply; /* Apply blend mode */
}
