      @keyframes ScanlineAnimationRight {
        0% { transform: translateX(0px) translateY(0px); }
        100% { transform: translateX(32px) translateY(-32px); }
      }
      @keyframes ScanlineAnimationLeft {
        0% { transform: translateX(0px) translateY(0px); }
        100% { transform: translateX(-32px) translateY(-32px); }
      }
      body::before {
        content: "";
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: calc(100% + 32px);
        height: calc(100% + 32px);
        background-image: url(https://parkaction.neocities.org/OCfolder/computeroverlay.png);
        background-repeat: repeat;
        z-index: 10000000;
        animation: ScanlineAnimationLeft 2s linear infinite;
        pointer-events: none;
        opacity: 1;
      }