.handwritten-text {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: #333333;
  border-right: 2px solid rgba(0,0,0,0.75);
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  animation: caretBlink 0.75s step-end infinite;
}

@keyframes caretBlink {
  from, to { border-color: transparent; }
  50% { border-color: rgba(0,0,0,0.75); }
}
