.scene-wrapper {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide .pic {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
  animation: sliding 25s linear infinite;
  z-index: 1;
}
.slide .pic:nth-of-type(1) {
  background-image: url(https://picsum.photos/id/9/1000/1000);
}
.slide .pic:nth-of-type(2) {
  background-image: url(https://picsum.photos/id/26/1000/1000);
  animation-delay: 5s;
}
.slide .pic:nth-of-type(3) {
  background-image: url(https://picsum.photos/id/35/1000/1000);
  animation-delay: 10s;
}
.slide .pic:nth-of-type(4) {
  background-image: url(https://picsum.photos/id/42/1000/1000);
  animation-delay: 15s;
}
.slide .pic:nth-of-type(5) {
  background-image: url(https://picsum.photos/id/48/1000/1000);
  animation-delay: 20s;
}

@keyframes sliding {
  0% {
    transform: translateX(100%);
    z-index: 1;
  }
  4% {
    transform: translateX(0);
    z-index: 10;
  }
  20% {
    transform: translateX(0);
    z-index: 10;
  }
  24% {
    transform: translateX(-100%);
    z-index: 1;
  }
  25% {
    transform: translateX(100%);
    z-index: 1;
  }
}/*# sourceMappingURL=slide.css.map */