.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.slide {
    display: none;
    transition: opacity 1s ease-in-out;
}

.fade {
    opacity: 0;
}

.slide.active {
    opacity: 1;
}

.prev,
.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;

    user-select: none;
}

.prev {
    left: 0;
    transform: translateX(-50%);
}

.next {
    right: 0;
    transform: translateX(50%);
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}