.slideshow-container {
    box-sizing: border-box;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.legendSS {
    text-align: center;
}

.mySlides img {
    height: 250px;
}

/* Caption text */
.slideshow-container .text {
    font-size: 15px;
    color: black;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* The dots/bullets/indicators */
.dotSS {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.legendSS .active {
    background-color: #717171;
}

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

@keyframes fadeSS {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}