* {
    box-sizing: border-box
}

:root {
    --slide-show-max-width: 750px;
    --slide-show-max-height: 550px;
    --slide-padding-top: 10px;
    --slide-caption-font-size: 16px;
    --slide-caption-height: 35px;
}

.slideshow-container {
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 10px;
    max-width: var(--slide-show-max-width);
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    width: var(--slide-show-max-width);
    height: var(--slide-show-max-height);
    display: flex;
    justify-content: center;
    align-items: top;
    border-radius: 5px 5px 5px 5px;
}

.slideshow-container p {
    margin-left: 0px;
    margin-top: 0px;
    display: flex;
    align-items: top;
    font-weight: bold;
}


/* Hide the images by default */
.slide {
    display: none;
    padding: 0px 30px 0px 30px;
}

/* Caption text */

.slide-caption {
    margin-top: 0px;
    display: none;
    text-align: center;
    font-size: var(--slide-caption-font-size);
    height: var(--slide-caption-height);
}

.slide {
    padding-bottom: 0px;
    padding-top: var(--slide-padding-top);
    max-width: var(--slide-show-max-width);
    max-height: calc(var(--slide-show-max-height));
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    color: rgb(131, 115, 61, 1);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev {
    left: 0;
    border-radius: 0px 5px 5px 0px;
}

/* 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);
    color: rgb(255, 230, 175, 1.0);
}


/* The dots/bullets/indicators */
.dot-container {
    text-align: center;
    max-width: var(--slide-show-max-width);
    position: relative;
    background-repeat: no-repeat;
    background-position: left center;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-top: var(--slide-caption-height);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--dot-color);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: var(--dot-color-active);
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.0s;
    animation-name: fade;
    animation-duration: 1.0s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media screen and (max-width: 600px) {
    :root {
        --slide-show-max-width: 300px;
        --slide-show-max-height: 150px;
    }
    .dot-container {
        display: none;
    }
    .slide-caption {
        display: none;
    }
    .prev {
        display: none;
    }
    .next {
        display: none;
    }
    .slideshow-container{
        max-height: 150px;
    }
}