body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
} 
 
.slideshow-container { 
    position: relative; 
    max-width: 600px; /* Set your desired width */ 
    margin: auto; 
    overflow: hidden; 
} 
 
.slide { 
    display: none; /* Hide all slides by default */ 
} 
 
.slide img { 
    width: 100%; /* Make images responsive */ 
    height: auto; 
} 
 
.fade { 
    animation: fade 1.5s ease-in-out; 
} 
 
@keyframes fade { 
    from { opacity: 0; } 
    to { opacity: 1; } 
} 