


p {
  position: relative;
  Top: 150px;
  text-align: center;
  font-family: Helvetica;
  font-size: 20;
  line-height: 3;
}

.marquee-container {
  position: relative;
  top: 75px;
  width: 100%;
  overflow: hidden; /* Hides text outside the box */
  white-space: nowrap; /* Keeps text on a single line */
  background: #f0f0f0;
  padding: 10px 0;
}

.marquee-text {
  font-family: "helvetica";
  display: inline-block;
  padding-left: 100%; /* Starts the text off-screen */
  animation: modern-marquee 15s linear infinite;
}

/* Marquee Animation Loop */
@keyframes modern-marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-text {
    animation: none;
    padding-left: 0;
    white-space: normal;
  }
}



H1 {    position: relative;
  Top: 150px;
  text-align: center;
  font-family: Helvetica;
  font-size: 100;
  padding-bottom: 20px;
}