body {
  background-color: black;
  color: white;
  font-family: courier;
  text-align: center;
}

.scroll {
  animation: scrolll 10s linear infinite;
  
@keyframes scrolll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}