
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

/* Hide all slides by default */
.mySlides {
    display: none;
    z-index: 5;
}

/* Image styling */
.mySlides img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-top: 15px;
}

/* Caption text */
.text {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    left: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Dots (indicators) */
.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #007bff;
}

@media (max-width: 768px) {
    .mySlides img {
        width: 100px;
        height: 200px;
    }
    .text {
        color: #fff;
        font-size: 1em;
        font-weight: 400;
        position: absolute;
        bottom: 20px;
        left: 30px;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 10px;
        border-radius: 5px;
    }
    
.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
}