* {box-sizing:border-box}

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

.slideshow-container a:hover{
    color: white;
}


/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    width: auto;
    top: 200px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-decoration: none;
    background-color: rgba(0,0,0,0.8);
}

@media(max-width: 960px){
    .prev, .next {
        top: 20%;
    }
}
@media(max-width: 480px){
    .prev, .next{
        font-size: 1rem;
        top: 15%;
    }
}

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


/* Caption text */
.text {
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
    max-width: 1020px;
    margin: auto;
}


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

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

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