.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100%; */
    width: 100vw;
    height: 100vh;    
    background: #000;
    color: #00ff88;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: monospace;
}

.terminal-text {
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #00ff88;
    width: 30ch;
    animation: typing 4.5s steps(24), blink 0.7s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 30ch }
}

@keyframes blink {
    50% { border-color: transparent }
}

.intro-image {
    margin-top: 2rem;
    width: 1200px;
    opacity: 0;
    transform: scale(0.2);
    transition: transform 3s ease-out, opacity 3s ease-out;
    cursor: pointer;
}

.intro-image.show {
    opacity: 1;
    transform: scale(1);
}

.terminal-text.fade-out {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
