.typewriter {
    display: inline-block;
    border-right: 3px solid black; /* Cursor effect */
    white-space: nowrap;
    overflow: hidden;
}
@keyframes blink {
    50% { border-color: transparent; }
}
.typewriter.blink {
    animation: blink 0.6s infinite;
}