.marquee-section {
  position: relative;
  width: 100%;
  height: 70px;
  background: #EE2E3C;
  backdrop-filter: blur(10px);
  z-index: 4;
  overflow: hidden;
  white-space: nowrap;
  padding-top: 20px;
}

.marquee-section .marquee-text {
  display: inline-block;
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 24px);
  color: white;
  letter-spacing: 2px;
  animation: marquee 25s linear infinite;
}

.marquee-section:hover .marquee-text {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}