.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 280px; 
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    text-align: center;
}

.slide img {
    width: auto;
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.slide .text {
    position: relative;
    top: 10px;  
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    background: rgba(0,0,0,0.6);
}

.showing {
    display: block;
}