/* 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;
  animation: slideBackground 1000s linear infinite;
  }
  
  /* Define animation keyframes */
@keyframes slideBackground {
  0% {
    background-position: 0px 0px; /* Start position */
  }
  100% {
    background-position: -159600px 0px; /* End position */
  }
}