body {
}

img {
  width: 150px;
  height: 150px;
  animation: scroll 60s linear infinite;
}

.slide-track {
  width: 100%;
  display: flex;
  overflow: hidden;
}

.slider {
  margin-top: 5px;

}

@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-4000%)}
}
