/*body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}*/

.slideshow-container {
    max-width: 90%;
    position: relative;
    margin: 10px 4% 10px 6%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #333;
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text {
    color: #fff;
    font-size: 12px;
    padding: 6px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    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.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 0, 0, 0.8);
}

.auto {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

.auto:hover {
    background-color: #d32f2f;
}

@media only screen and (max-width: 768px) { /*480px*/
    .slideshow-container { margin: 10px 0 10px 0!important; max-width: 100%!important; }
}