
.appleII {
    font-family: 'Apple II Screen Typeface', sans-serif;
}

.textContainer{
  display: inline-block;
  font-family: 'Apple II Screen Typeface', sans-serif;
  font-size: 24px;
}

.typed {
  overflow: hidden;
  white-space: nowrap;
  border-right: 5px solid;
  width: 0;
  animation: typing 1.5s steps(30, end) forwards, blinking 1s infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blinking {
  0% {border-right-color: transparent}
  50% {border-right-color: black}
  100% {border-right-color: transparent}
}