.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
/*    border-top: 5px solid black;
    border-bottom: 5px solid black;*/
    background-color: white;
}

.slide {
    display: none;
}

.previous, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.previous:hover, .next:hover {
    background-color: rgba(51, 124, 57, 0.8);
}

div.slide img {
    width: 100%;
    height: 100%;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

@-webkit-keyframes fade {
    from {opacity: 0.4;}
    to {opacity: 1;}
}
