.aboutme-specialized-list {
    display: flex;
    flex-direction: row;
}

.symbol-dev {
    color: #71717A;
}

.aboutme-specialized-single {
    background: linear-gradient(to right, #B1F60F, #3BCD4F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* testing */
    overflow: hidden;
    /* Garante que o texto não seja visível inicialmente */
    white-space: nowrap;
    /* Impede a quebra de linha */
    animation: typingAnimation 3s steps(40, end);
    font-weight: bolder;
}

@keyframes typingAnimation {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


.text-loading {
    color: #454547;
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
