/*html {background-color:#42c4dd}*/

/* Styles for slideshow container */
.slideshow-container {
    max-width: 100%; /* Adjusted for full browser width */
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 98vh; /* Adjusted for full browser height */
    overflow: hidden; /* Hide overflow */
}

/* Styles for slideshow images */
.mySlides {
    position: absolute;
    width: 95%;
    height: 100%;
    opacity: 0;
    transition: opacity 4s ease;
}

    .mySlides img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* Next and previous buttons */
/*.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;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}*/

/* Position the dots */
/*.dot-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active, .dot:hover {
        background-color: #717171;
    }*/
