.scroll-container {
  background: #9fe1a2;
  overflow: hidden;
  padding: 15px 0;
  margin-bottom: 30px;
  border-radius: 5px;
  font-weight: bold;
}

.scroll-text {
  display: inline-block;
  color: #1f1111;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
  padding-left: 100%;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

