/* Slideshow css */

.slideshow-container {
    position: relative;
    max-width: 90%;
    margin: auto;
    overflow: hidden;
}

.mySlides {
    display: none;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
    /* Added to indicate clickable dots */
}

.active {
    background-color: #717171;
}

.white-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(235, 235, 235);
    transition: opacity 1s ease-out;
    opacity: 1;
    z-index: 1;
}

.slideshow-container {
    position: relative;
}
.white-cover {
    display: flex;
    justify-content: center;
}
