.kenya-animated-text {
    font-size: 23px;
    font-weight: bold;
    font-family: sans-serif;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid black;
    color: transparent;
    background-image: linear-gradient(to right, black 33%, red 33% 66%, green 66% 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blink 0.7s step-end infinite;
}
@keyframes blink {
    50% { border-color: transparent; }
}



