.typedEffect::after{
    content:"|";
    animation: disapear 1s ;
    animation-iteration-count: infinite;
    animation-delay: 4.5s;
}
@keyframes disapear {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }

}