

/* Typewriter Effect */
#typewriter-text {
    border-right: 4px solid white; /* Cursor effect */
    white-space: nowrap;
    overflow: hidden;
    display: inline; /* Keep it on the same line */
    padding-left: 8px; /* Small gap between "Hello," and text */
    animation: blink 0.7s infinite;
}

/* Cursor Blinking */
@keyframes blink {
    50% { border-color: transparent; }
}
