.output {
  text-align: left;
  color: white;
}
.output h1 {
  font-size: 32px;
  font-weight: 500;
  font-family: 'AutonomousMono', monospace;
}
@media screen and (max-width: 960px) {  
    .output h1 {
      font-size: 28px;
    }
}
@media screen and (max-width: 320px) {  
    .output h1 {
      font-size: 24px;
    }
}

/* Cursor Styling */

.cursor::after {
  content:'';
  display:inline-block;
  margin-left:5px;
  background-color:white;
  animation-name:blink;
  animation-duration:0.5s;
  animation-iteration-count: infinite;
}
h1.cursor::after {
  height:24px;
  width: 3px;
}
p.cursor::after {
  height:18px;
  width:6px;
}

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