body {
  margin: 1.5em;
  font-family: cursor, monospace;
  letter-spacing: 0.05em;
  background-color: #1b1b1b;
  color: #f2f8f2;
}

.green {
  color: green;
}
.blue {
  color: #4169e1;
}
.red {
  color: red;
}

::selection {
  color: #1b1b1b;
  background-color: #f2f8f2;
}

span {
  padding: 0;
  margin-left: 0px;
  margin-right: 0px;
}

#texter {
  margin-bottom: 5px;
  margin-top: 5px;
  display: inline-block;
  width: 100%;
}

textarea {
  height: 0;
  width: 0px;
  outline: none;
  resize: none;
  background-color: #1b1b1b;
  border: 0;
  color: white;
  caret-color: transparent;
}

.highlight {
  color: green;
}

p {
  display: block;
  line-height: 1.3em;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.05em;
  animation: typing 1s steps(30, end);
}

#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 1s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.line {
  margin-left: 1em !important;
}

.strong {
  width: 17em;
  color: #1b1b1b;
  background-color: #f2f8f2;
}

.ascii-video {
  display: inline-block;
  color: #f2f8f2;
  background-color: #1b1b1b;
  font-size: 0.6em;
  line-height: 1em;
}

.blink {
  font-size: 12px;
  color: white;
  background-color: white;
  position: relative;
  opacity: 1;
  height: 1.5em;
  width: 10px;
  max-width: 10px;
  transform: translateY(4px);
  overflow: hidden;
  text-indent: -5px;
  display: inline-block;
  text-decoration: blink;
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.no-animate {
  margin-top: 5px;
  margin-bottom: 5px;
  animation: typing 0 steps(30, end);
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
