.mySlides {
    display: none;
    max-height: 30vw;
    text-align: center;

    overflow: hidden;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.mySlides>img {
    vertical-align: middle;
    height: 30vw;
}

/* Slideshow container */
.slideshow-container {
    max-width: 60vw;
    max-height: 30vw;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 0.5vw;
    margin-top: -22px;
    color: var(--foreground);
    font-weight: bold;
    font-size: 3vw;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: -3vw;
}
.prev {
    left: -3vw;
}

/* Caption text */
.text {
    color: var(--foreground);
    font-size: 1vw;
    position: absolute;
    bottom: 1vw;
    width: 100%;
    text-align: center;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 1vw;
    width: 1vw;
    margin: 0 2px;
    background-color: #464646;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #F9C421;
}


/* On smaller screens, decrease text size */
@media only screen and (max-width: 45vw) {
    .prev, .next,.text {font-size: 0.5vw}
}