.slideShowPosition {
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

.mySlides > img {
    width: 90vw;
    aspect-ratio: 16/9;
    object-fit: contain;
    max-width: 1000px;
}

/* Next & previous buttons */
.prev,
.next {
    background-color: whitesmoke;
    border: 0px;
    cursor: pointer;
    width: auto;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    /* border-radius: 0 3px 3px 0; */
    user-select: none;
}

.prev {
    border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.next {
    border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    text-align: center;
}

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

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}


