.slideshowContainer{
    width:100%;
    height:auto;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}

#slideshow {
    margin: 30px 0 50px 0 ;
    position:relative;
    width: 70%;
    aspect-ratio: 16 / 9;
    overflow: hidden; 
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius:20px;
    max-width: 1300px;
    z-index: -10;
}

#slideshow img {
    position: absolute;
    top: 0;
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    #slideshow {
        width:90%;
    }
}