
.slideshow {
    position: relative;
    margin: auto;
    aspect-ratio: 3089 / 2048;
    width: 600px;
    height: auto;
    padding:0px;
    white-space: nowrap;
    
    text-align: center;
}

.slide {
    display: none;
    width: 100%;
    height: auto;
}

img.slideImg {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    overflow: hidden;
    background-size: 10%;
}

.slideDesc {
    color: white;
    position: absolute;
    text-align: center;
    font-size:20px;
    background-color: rgba(0,0,0,0.5);
    bottom: 0px;
    left:0px;
    right: 0px;
    width:auto;
    padding: 0px 10px;
    margin-left: auto;
    margin-right: auto;
}



.firstImg {
    display: inline-block;
}
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 22px;
    height: 25px;
    margin-top: -10px;
    margin-left: 0px;
    padding:  0px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.prev {
  left:0px;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}