@charset "utf-8";
/* CSS Document */
.slider img {
  width: 600px;
  height: 400px;
  animation: scroll 140s linear infinite;
}

.slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}

.slider {
  margin-top: 10px;
  background-color: white;
  padding: 2em 2em;
}

@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-16200px)}
}

