/*contenedor del tipeo*/
.escritura {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: auto; */
    /* margin: auto; */
    /* width: 90%; */
    background-color: #04102b;
    font-family: 'Onest', sans-serif;
    padding-top: 70px;
    padding-bottom: 70px;
    font-weight: bold;
}
/*stilos de las palabras staticas*/
.typing-text {
    font-size: 45px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
}
/*stilos para las palabras q cambian*/
.changing-word {
    border-right: 3px solid #333;/*grosor y color de la barrita*/
    animation: typing 4s steps(14) forwards, blink-caret 0.5s step-end infinite;
    color:#0173f0;/*color palabra tipeada*/
}

/*animacion para el efecto de escritura*/
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
/* animacion para la barrita parpeadora*/
@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #07090a;
    }
}
@media screen and (max-width: 780px) {
    .typing-text {
        font-size: 30px; /* Ajusta el tamaño de fuente para pantallas pequeñas */
    }
}