@font-face {
  font-family: "profont";
  src: url("/assets/profont.ttf");
  font-weight: normal;
}
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: #050505;
  color: #80ffa0;
  overflow: hidden;
  font-family: profont, monospace;
  font-size: 20px;
}

::selection {
  background: #80ffa0;
  color: #050505;
}

body {
  position: relative;
}

canvas {
  position: absolute;
  height: 100%;
  width: 100%;
}

#gui {
  position: absolute;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.terminal {
  padding: 8px;
  background-color: #181818;
  border-radius: 4px;
}
.terminal:not(.visible) {
  opacity: 0;
}

.screen {
  position: relative;
  width: 800px;
  height: 600px;
}
.screen .content {
  background-color: #151515;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px 16px rgba(0, 0, 0, 0.5);
  overflow-y: hidden;
}
.screen .content .input, .screen .content .output {
  white-space: pre;
  text-shadow: 0 0 8px rgba(128, 255, 160, 0.5), 0 0 32px rgba(128, 255, 160, 0.33), 0 0 64px rgba(128, 255, 160, 0.25);
}
.screen .content .input p, .screen .content .output p {
  margin: 0;
}
.screen .content .input p > .default, .screen .content .output p > .default {
  color: #80ffa0;
  text-shadow: 0 0 8px rgba(128, 255, 160, 0.5), 0 0 32px rgba(128, 255, 160, 0.33), 0 0 64px rgba(128, 255, 160, 0.25);
}
.screen .content .input p > .red, .screen .content .output p > .red {
  color: #ff2020;
  text-shadow: 0 0 8px rgba(255, 32, 32, 0.5), 0 0 32px rgba(255, 32, 32, 0.33), 0 0 64px rgba(255, 32, 32, 0.25);
}
.screen .content .input p > .green, .screen .content .output p > .green {
  color: #20ff20;
  text-shadow: 0 0 8px rgba(32, 255, 32, 0.5), 0 0 32px rgba(32, 255, 32, 0.33), 0 0 64px rgba(32, 255, 32, 0.25);
}
.screen .content .input p > .yellow, .screen .content .output p > .yellow {
  color: #eeee20;
  text-shadow: 0 0 8px rgba(238, 238, 32, 0.5), 0 0 32px rgba(238, 238, 32, 0.33), 0 0 64px rgba(238, 238, 32, 0.25);
}
.screen .content .input p > .blue, .screen .content .output p > .blue {
  color: #03a7fa;
  text-shadow: 0 0 8px rgba(3, 167, 250, 0.5), 0 0 32px rgba(3, 167, 250, 0.33), 0 0 64px rgba(3, 167, 250, 0.25);
}
.screen .content .input p > .handle, .screen .content .output p > .handle {
  background-color: #304030;
}
.screen .scanlines {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("/images/scanline.svg");
  background-repeat: repeat;
}

.cursor {
  animation: blink 1000ms step-end infinite;
  background-color: #80ffa0;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/*# sourceMappingURL=style.css.map */
