/* Slideshow container */
.slideshow-container {
    height: auto;
    width: auto;
    position: relative;
  }
  
  /* Hide the images by default */
.mySlides {
    display: none;
  }

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}