body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.container {
  overflow: hidden;
  white-space: nowrap;
}

.scrolling {
  animation: marquee 15s linear infinite;
  display: inline-block;
  padding-right: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(150%);
  }
  to { 
    transform: translateX(-150%);
  }
}