.slideshow-container {
    max-width: 800px;
    /* height: 400px; */
    height: 400px;
    position: relative;
    /* position: center; */
    margin: auto;
    /* margin-top: 100px; Add margin upside */
    background-color: #f0f0f0; /* Light grey background */
}
.slide {
    display: none;
    height: 100%;
    /* height: 30px; */
    /* width: 90%; */
    /* width: 30%; */
    width: 100%;
    /* position: relative; */
    position: absolute;
    top: 0;
    left: 0;
}
.slideimg {
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.8);
    z-index: 1;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,1);
}
