.output {
  min-height: 100%;
  font-style: normal;
  font-weight: bold;
  font-size: var(--h1-font-size);
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.045em;
  white-space: pre-line;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Cursor Styling */

.cursor::after {
  content: '';
  display: inline-block;
  margin-left: 3px;
  background-color: black;
  animation-name: blink;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
}

span.cursor::after {
  height: 25px;
  width: 6px;
}

p.cursor::after {
  height: 25px;
  width: 6px;
}

@media (min-width: 1200px) {
  span.cursor::after {
    height: 50px;
    width: 13px;
    margin-left: 15px;
  }

  p.cursor::after {
    height: 50px;
    width: 6px;
    margin-left: 15px;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
