﻿.blinking {
    animation: blinkingText .9s infinite;
}

@keyframes blinkingText {
    0% {
        color: rgb(165, 28, 8);
    }

    49% {
        color: rgb(165, 28, 8);
    }

    50% {
        color: rgb(165, 28, 8);
         
    }

    99% {
        color: transparent;
    }

    100% {
        color: #000;
    }
}
