html,
body {
  margin: 0 auto;
  height: 100%;

  background: radial-gradient(
    circle at center,
    #ffa600 0%,
    #750375 20%,
    #000000 100%
  );
}
.maindiv {
  height: 60px;
}
pre {
  padding: 0;
  margin: 0;
}

.load {
  margin: 0 auto;
  min-height: 100%;
  width: 100%;
}
.term {
  font-family: "Bloody", sans-serif;
  /* font-family: monospace;
 */
  color: #cb0c0c;
  font-size: 10vw;
  opacity: 0.8;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 10px;
  padding-left: 20px;
}

.output-message {
  text-align: center;
  font-size: 2.8vw;
  text-align: right;
  font-family: monospace;
  font-weight: bold;
  color: rgb(220, 125, 9);
}
.term:after {
  content: "_";
  font-size: 0.2em;
  opacity: 1;
  animation: cursor 1s infinite;
}

.title {
  font-weight: 900;
  font-family: "Bloody", sans-serif;
  font-size: 10vw;
  margin: 0;
  filter: url(#goo);
  position: fixed;
  letter-spacing: -0.12em;
  color: rgb(255, 21, 0);
  text-transform: uppercase;
}

.drop {
  width: 0.1em;
  height: 0.1em;
  border-radius: 0 100% 100% 100%;
  background-color: currentColor;
  position: absolute;
  top: 72%;
  animation: drop 3s infinite both;

  &:nth-child(1) {
    left: 14%;
  }

  &:nth-child(2) {
    left: 39%;
    animation-delay: -0.1s;
  }

  &:nth-child(3) {
    left: 55%;
    animation-delay: -2s;
  }

  &:nth-child(4) {
    left: 82%;
    animation-delay: -0.3s;
  }

  &:nth-child(5) {
    left: 95.5%;
    animation-delay: -1.3s;
  }
}

@keyframes drop {
  0% {
    transform: translateY(0) scaleX(0.99) rotate(45deg);
    animation-timing-function: ease-out;
  }
  60% {
    transform: translateY(120%) scaleX(1.25) rotate(45deg);
    animation-timing-function: ease-in;
  }
  80%,
  100% {
    transform: translateY(60vh) scaleX(2.85) rotate(45deg);
  }
}
*/ @keyframes cursor {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
