/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;

}



/* Define the marquee motion */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Style the container holding the text */
.retro-marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  color: #00ff00;
  font-family: "Courier New", monospace;
  padding: 5px 0;
}

/* Apply the animation to the paragraph */
.retro-marquee p {
  display: inline-block;
  animation: marquee 10s linear infinite;
}

/* Optional: Pause the scrolling text on hover */ 
/*.retro-marquee p:hover {
/*  animation-play-state: paused;
/*}

