.banner {
  width: 100%;
  height: 100px;
  background-color: #000;
  overflow: hidden;
  position: relative;
}

.text-container {
  white-space: nowrap;
  animation: moveText 60s linear infinite;
}

.moving-text {
  color: #fff;
  padding: 10px;
  display: inline-block;
}

@keyframes moveText {
  100% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-500%);
  }
}

