/* Main styles for Nitzan Luxembourg's website */

/* Typewriter animation */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #00f0ff; } /* Electric Cyan */
}

.typewriter {
    animation: typing 2s steps(20, end), blink-caret 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: .15em solid #00f0ff; /* Electric Cyan */
    width: 100%;
    font-family: 'Fira Code', monospace;
}

/* Reduce motion for prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .typewriter {
        animation: none;
    }
    .pulse {
        animation: none;
    }
}

 