img {
  animation: 1s infinite normal tschu;
  animation-timing-function: linear;
}

@keyframes tschu {
  from {
    translate: 100vw 0;
  }
  to {
    translate: -50vw 0;
  }
}
