.slideshow-container {
    box-sizing: border-box;
    display: flex;
    position: relative;
    height: min(100%, 80vh);
    max-width: 100vw;
    background-color:  rgba(77, 42, 95, 0.5);
    overflow-x: hidden;
}
@media screen and (width < 600px){
    .slideshow-container {
        height: 50vh;
    }
}

.images {
    display: flex;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 1s;
}

.image {
    height: 100%;
    min-width: 100vw;
}

.image img {
    max-height: 100%;
    max-width: 100%;
    user-select: none;
}

.left-slider {
    left: 0;
    border-radius: 5px 0 0 5px;
}

.left-slider::after {
    content: "";
    translate: calc(-50% + 0.375rem) 0;
    color: white;
    border-top: 0.5rem solid rgba(0, 0, 0, 0);
    border-bottom: 0.5rem solid rgba(0, 0, 0, 0);
    border-right: 0.75rem solid;
    border-left: 0.75rem solid rgba(0, 0, 0, 0);
}

.right-slider {
    right: 0;
    border-radius: 0 5px 5px 0;
}

.right-slider::after {
    content: "";
    translate: calc(50% - 0.375rem) 0;
    color: white;
    border-top: 0.5rem solid rgba(0, 0, 0, 0);
    border-bottom: 0.5rem solid rgba(0, 0, 0, 0);
    border-right: 0.75rem solid rgba(0, 0, 0, 0);
    border-left: 0.75rem solid;
}

.left-slider, .right-slider {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    padding:  0.75rem 0.5rem;
    margin: 0.5rem;
    height: 3rem;
    width: 1rem;
    background-color: rgb(93, 43, 120);
    color: white;
    transition: all 0.25s;
    cursor: pointer;
}

.left-slider:active, .right-slider:active {
    scale: 1.25;
}

/* pagination */
.pagination-dots {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: 25%;
}

.dot {
    padding: 0.5rem;
    margin: 0.25rem;
    border-radius: 25rem;
    background-color: rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.dot.selected {
    background-color: rgba(0, 0, 0, 0.75);
}