@font-face {
    font-family:"ocr-a-std";
    src:url("../shared/fonts/oc") format("woff2");
    font-display:auto;font-style:normal;font-weight:400;
}

body {
    background-color: black;
    color: #555555;
    opacity: 0.25;
    position: relative;
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: ocr-a-std,monospace;
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
    user-select: none;
    white-space: pre;
    cursor: pointer;
}

#screen {
    margin-top: -65px;
    transform-origin: 0 0;
    width: 300%;
}

.on {
    background-color: #eeeeee;
    color: #222222;
}

.fadein {
    animation: fadein ease 2s;
}

@keyframes fadein {
    0% { opacity: 0.25 }
    100% { opacity: 1 }
}

.scanlines {
    position: relative;
    overflow: hidden;
  }
  .scanlines:before, .scanlines:after {
    display: block;
    pointer-events: none;
    content: "";
    position: absolute;
  }
  .scanlines:before {
    width: 100%;
    height: 2px;
    z-index: 2147483649;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.75;
    -webkit-animation: scanline 6s linear infinite;
            animation: scanline 6s linear infinite;
  }
  .scanlines:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483648;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 51%);
    background-size: 100% 4px;
    -webkit-animation: scanlines 1s steps(60) infinite;
            animation: scanlines 1s steps(60) infinite;
  }
  
  /* ANIMATE UNIQUE SCANLINE */
  @-webkit-keyframes scanline {
    0% {
      transform: translate3d(0, 200000%, 0);
    }
  }
  @keyframes scanline {
    0% {
      transform: translate3d(0, 200000%, 0);
    }
  }
  @-webkit-keyframes scanlines {
    0% {
      background-position: 0 50%;
    }
  }
  @keyframes scanlines {
    0% {
      background-position: 0 50%;
    }
  }

  .link {
    z-index: 2;
    width: 100px;
    position: fixed;
    opacity: 0;
    cursor: pointer;
  }
  
  .link > img {
    width: 100px;
  }
  
  .link:hover {
    opacity: 0.35;
  }
  
  #link1 {
    top: 5%;
    left: 5%;
  }
  
  #link2 {
    bottom: 5%; 
    right: 5%;
  }
  