
.slideshow {
    width: 100%;
    max-width: 300px;
    height:550px;
    margin: 20px auto;
    position: relative;
}

#slideshow-2{
    height:700px;
}

#slideshow-3{
    height:250px;
}

.slides-box .slide{
    display: flex;
    align-items: center;
    justify-content: center;
}
.slides-box .slide img {
    display: table;
}

.slideshow-buttons {
    color: black;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.slideshow-buttons div {
    color: white;
    display: inline-block;
    font-size: 2em;
    padding: 10px;
    cursor: pointer;
}

.slideshow-buttons .next-btn {
    margin-left: 4%;
    transition: all ease-in-out 0.3s;
    text-shadow: 1px 1px 2px black;
}

.slideshow-buttons .next-btn:hover {
    transform: translateX(4px);
}

.slideshow-buttons .prev-btn {
    transition: all ease-in-out 0.3s;
    text-shadow: 1px 1px 2px black;
}

.slideshow-buttons .prev-btn:hover {
    transform: translateX(-4px);
}
