#typewriter::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  animation: tw-blink 0.7s step-end infinite;
  color: #5284eb;
}

@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
