.typing h2,
h3 {
font-family: monospace;
overflow: hidden;
white-space: nowrap;
margin: 0 auto;
letter-spacing: 0.05em;
max-width: min-content;
}
.typing h2 {
border-right: 0.15em solid green;
animation: typing 7.5s steps(100, end), blink-caret 1s step-end infinite;
margin-top: 40vh;
}
.typing h3 {
animation: typing 5s steps(2, end);
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
@keyframes blink-caret {
from,
to {
border-color: transparent;
}
50% {
border-color: green;
}
}