.typewriter {
  display: inline-block;
  /* border-right removed to eliminate blinking cursor */
  white-space: nowrap;
  /* allow text descenders to be visible (prevents clipping) */
  overflow: visible;
  vertical-align: baseline;
  font-weight: 600;
  color: #f9fafc;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.05;
  padding-bottom: 0.06em;
  letter-spacing: 0.5px;
  transition: border-color 0.1s;
}
@media (prefers-color-scheme: dark) {
  .typewriter { border-color: #888a8c; }
}
