body { background: #0e0e0e; padding: 32px; margin: 0; }

a { color: #0f0; }

.italic { font-style: italic; }

.frame {
  position: relative;
}

.terminal {
  max-width: 480px;
  margin: 0 auto;
}

.text {
  font-family: mono45-headline, Monaco, monospace;
  font-size: 13px;
  line-height: 1.5;
  color: white;
  margin-bottom: 2px;
}

.cursor {
  position: relative;
  display: inline-block;
}

.cursor::after {
  content: "";
  position: absolute;
  right: -20px;
  display: inline-block;
  background-color: #606060;
  vertical-align: top;
  width: 10px;
  height: 20px;
  -webkit-animation: blink 1s step-end infinite;
  animation: blink 1s step-end infinite;
}

@-webkit-keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}
