@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.typing-cursor {
    display: inline-block;
    color: #5FB134;
    animation: cursorBlink 1s step-end infinite;
    text-shadow: 0 0 10px rgba(95, 177, 52, 0.5);
}