
/* Slideshow container */
.slideshow-container {
  max-width: 100vw;
  position: absolute;

  display: flex;
  vertical-align:middle;
  justify-content:flex-end;
  overflow: hidden;
}

/* Hide the images by default */
.slide {
  display: none;
  min-width: 100vw;
}

/* Fading animation */
.fade {
  transition: 1s;
  left: 0;
  animation-duration: 4s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}