body {
  background-color: white;
  color: black;
  font-family: Edgar, Courier, Verdana, Arial, monospace;
  text-align: center;
  animation: slideBackground 10s linear infinite;
  }
  
  .bold {
  font-family: EdgarBold, Courier, Verdana, Arial, monospace;
  }
  
  /* Define animation keyframes */
@keyframes slideBackground {
  0% {
    background-position: 0px 0px; /* Start position */
  }
  100% {
    background-position: 512px 0px; /* End position */
  }
}

        @font-face {
            font-family: 'Edgar';
            src: url('OPTIEdgar-Extended.otf') format('opentype');
        }
        
        @font-face {
            font-family: 'EdgarBold';
            src: url('OPTIEdgarBold-Extended.otf') format('opentype');
        }