.marquee-container {
  height: 800px; /* Define the visible height of the marquee */
  overflow: hidden; /* Hide content outside the container */
  position: relative;
  border: 1px solid #ccc; /* For visualization */
}

.marquee-content {
  position: absolute;
  width: 95%;
  animation: scroll-up 10s linear infinite; /* Adjust duration and timing function as needed */
}

.marquee-container:hover .marquee-content {
        animation-play-state: paused;
    }


@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%); /* Scroll up by 50% to align with duplicated content */
  }
}

.marquee-content p {
  padding: 5px 0;
  margin: 0;
  text-align: center;
}