.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 6rem !important;
  font-family: 'Gasoek One', sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  color: #0d4923 !important;
}

.marquee {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}

.marquee.right {
  animation: scroll-right 20s linear infinite;
}

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

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

