.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background-color: #d1e7dd;
  padding: 8px 0;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 12s linear infinite;
}

.marquee-content span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
  padding-right: 50px;
}

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

