body {
  background-color:#ffffff;
}

.output {
  text-align:center;
  font-family: 'Suman Subhan', monospace;
  color:white;
  h5 {
    font-size:20px;
  }
}

/* Cursor Styling */

.cursor::after {
  content:'';
  display:inline-block;
  margin-left:3px;
  background-color:white;
  animation-name:blink;
  animation-duration:0.5s;
  animation-iteration-count: infinite;
}
h5.cursor::after {
  height:15px;
  width:8px;
}
p.cursor::after {
  height:13px;
  width:6px;
}

@keyframes blink {
  0% {
    opacity:1;
  }
  49% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
  100% {
    opacity:0;
  }
}