/* Gallery Container */
.gallery-container {
    height: 50vh;
    bottom: 0px;
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px;
    /* margin-top: 250px; */
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.0);
    box-shadow: inset 4px 4px 4px 4px rgba(0, 0, 0, 0.0);
}

/* Gallery Styling */
.gallery {
    display: flex;
    will-change: transform;
}

/* Slide Styling */
.slide {
    width: 20%;
    flex-shrink: 0;
    padding: 10px;
}

img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

/* Enlarges the image on hover */
.slide img {
    transition: transform 0.3s ease-in-out;
    /* Smooth transition for scaling */
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.3);
}

.slide img:hover {
    transform: scale(1.2);
    /* Makes the image 10% larger */
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.5);
}