* {
  font-family: "Pixelated MS Sans Serif";
  box-sizing: border-box;
  image-rendering: pixelated;
  font-size: 16px;
  overflow: hidden;
}

main {
  background-color: #323133;
  width: 530px;
  height: 530px;
  overflow: hidden;
  position: absolute;
}
main:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: repeating-linear-gradient(0deg, #111 0px, #111 1px, transparent 2px, transparent 5px);
  background-size: 100% 5px;
  animation: lines 2s ease-out infinite;
  opacity: 0.3;
  mix-blend-mode: color-burn;
  pointer-events: none;
}

@keyframes lines {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 0px 25px;
  }
}
div#topDiv {
  width: 100%;
  height: 50%;
  opacity: 1;
  background: black;
  position: absolute;
  top: 0%;
  z-index: 2;
}

div#bottomDiv {
  width: 100%;
  height: 50%;
  opacity: 1;
  background: black;
  position: absolute;
  bottom: 0%;
  z-index: 2;
}

div#centerDiv {
  position: absolute;
  height: 1px;
  top: 50%;
  left: 50%;
  width: 0%;
  background: white;
  display: block;
  z-index: 3;
}

#container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: column;
  position: absolute;
  overflow: hidden;
}

#content {
  width: 90%;
  height: 85%;
  color: #0B8A20;
  opacity: 0;
}

.cursor_text {
  white-space: pre;
}

#error_text {
  white-space: pre;
  color: #82021E;
  text-shadow: 0.06rem 0 0.06rem #ea36af, -0.125rem 0 0.06rem #75fa69;
  letter-spacing: 0.125em;
  animation-duration: 0.01s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
  }
  to {
    text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
  }
}
.cursor {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
}

.cursor::after {
  content: "";
  top: 0;
  display: inline-block;
  background-color: #606060;
  vertical-align: bottom;
  width: 8px;
  /* Set height to the line height of .text */
  height: 24px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=OpStyle.css.map */