.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: black;
  color: white;
  height: 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee-scroll 12s linear infinite;
}

.marquee span {
  display: inline-block;
  padding-right: 4rem;
  font-size: 1rem;
  font-weight: 600;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive font-size */
@media (max-width: 576px) {
  .marquee span {
    font-size: 0.85rem;
  }
}
