@font-face {
  font-family: 'VT220';
  src: url('../fonts/Glass_TTY_VT220.woff2') format('woff2');
}
body {
  margin: 0;
  padding: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}
#terminal {
  width: 97vw;
  height: 97vh;
  max-width: 100vw;
  max-height: 100vh;
  background: #000;
  border: 0px solid #333;
  position: relative;
  overflow: hidden;
  font-family: 'VT220', monospace;
  font-size: 21px;
  color: #ffb000;
  line-height: 1;
  padding: 10px 20px 20px 10px;
  box-sizing: border-box;
  image-rendering: pixelated;
}
#screen {
  position: relative;
  width: 100%;
  height: 100%;
  white-space: pre-line;
  word-wrap: break-word;
  align-items: flex-start;
  justify-content: flex-start;
  text-shadow: 0 0 4px #ffb000;
  filter: blur(0.3px);
}
@keyframes blink {
  50% { opacity: 0; }
}
#cursor {
  display: inline-block;
  width: 0.6em;
  background-color: #ffb000;
  vertical-align: baseline;
  height: 0.9em;
  animation: blink 1s step-end infinite;
  position: relative;
}
#cursor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 1px,
    rgba(0, 0, 0, 1) 1px,
    rgba(0, 0, 0, 0.15) 2px
  );
  pointer-events: none;
  z-index: 1;
}
#noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.09;
  pointer-events: none;
  z-index: 2;
}
