.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* On screens that are 991px */
@media screen and (max-width: 991px) {
  .slideshow {
    width: 100vw;
    height: 100vh;
  }
}

.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transform: scale(1.1);
  animation: kenburnsZoom 20s linear infinite;
}

@keyframes kenburnsZoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
