body {
  background-color: white;
  color: black;
  font-family: ComicNeue-Angular-Bold, Verdana, Arial, sans-serif;
  text-align: center;
  animation: slideBackground 15s linear infinite;
  }
  
  /* Define animation keyframes */
@keyframes slideBackground {
  0% {
    background-position: 0px 0px; /* Start position */
  }
  100% {
    background-position: 512px 0px; /* End position */
  }
}

        @font-face {
            font-family: 'ComicNeue-Angular-Bold';
            src: url('ComicNeue-Angular-Bold.ttf') format('truetype');
        }