.typing-effect {
  display: none;
  white-space: nowrap;
  border-right: 2px solid;
  overflow: hidden;
  line-height: 1.2;
  position: relative;
}
.typing-effect.active {
  display: inline-block;
  animation: blink 0.7s infinite step-end;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}