.slideshow-container {
    max-width: 100%;
    margin: auto;
    padding: 0 100px;
    box-sizing: border-box;
}

/* Hide the images by default */
.mySlides {
    display: none;
}
.mySlides img {
    width: calc(100% + 200px);
    max-width: none;
    margin-left: -100px;
    height: auto;
    display: block;
}

/* Fade in animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .slideshow-container {
        padding: 0 50px;
    }

    .mySlides img {
        width: calc(100% + 100px);
        margin-left: -50px;
    }
}
@media (max-width: 480px) {
    .slideshow-container {
        padding: 0 20px;
    }

    .mySlides img {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
}