#presentacion {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: #8B0000;
    color: #ffffff;
    z-index: 1000;
    transition: opacity 1s ease-out;
}

#presentacion h2 {
    font-size: clamp(24px, 6vw, 36px);
    margin: 0;
    font-family: monospace; /* Mejor para efecto de escritura */
    border-right: 3px solid white; /* Cursor parpadeante */
    white-space: nowrap;
    overflow: hidden;
}

/* Clase para desvanecer */
.fade-out {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Para el cursor parpadeante */
.typing {
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: white; }
}