/**
 * typewriter.css
 * --------------
 * Companion styles for typewriter.js.
 * Link this in your <head>.
 */

.tw-cursor {
  display: inline-block;
  width: 1.5px;
  height: 1.25em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: baseline;
  display: none;
  animation: tw-blink 0.6s steps(1) infinite;
}
 
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
