/*
Auto typing and blinking cursor
 */
.text-js{
    opacity: 0;
}

.cursorCell{
    animation: cursorFlash 0.5s none infinite alternate;
}

@keyframes cursorFlash{
    0%{
        background-color: #a1a1a1;
    }
    50%{
        background-color: #a1a1a1;
    }
    50.01% {
        background-color: transparent;
    }
    100%{
        background-color: transparent;
    }
}
