#gallery{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000; /* Optional: Set background */
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.fade-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

@media (max-width: 768px) {

    #gallery {
        height: 50vh;
        max-height: 50vh;
        align-self: start;
        justify-self: start;
    }

}