body {
    background: #222;
    min-height: 100vh;
    display: grid;
    place-items: center;
    color: white;
    font-family: sans-serif;
}

.glitch {
    font-size: 6em;
    font-weight: 700;
    text-shadow: 
    0.05em 0em 0em rgba(255, 0, 0, 0.75),
    -.025em -0.025em 0em rgba(0, 255, 0, 0.75),
    0.025em 0.05em 0em rgba(0, 0, 255, 0.75);
    animation:glitch 600ms infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 
        0.025em 0em 0em rgba(255, 0, 0, 0.75),
        -.025em -0.025em 0em rgba(0, 255, 0, 0.75),
        0.025em 0.05em 0em rgba(0, 0, 255, 0.75);
    }
    19% {
        text-shadow: 
        0.025em 0em 0em rgba(255, 0, 0, 0.75),
        -.025em -0.025em 0em rgba(0, 255, 0, 0.75),
        0.025em 0.05em 0em rgba(0, 0, 255, 0.75);
    }
    20% {
        text-shadow: 
        0em 0.025em 0em rgba(255, 0, 0, 0.75),
        0.025em -0.025em 0em rgba(0, 255, 0, 0.75),
        -0.025em 0.05em 0em rgba(0, 0, 255, 0.75);
    }
    69% {
        text-shadow: 
        0em 0.025em 0em rgba(255, 0, 0, 0.75),
        0.025em -0.025em 0em rgba(0, 255, 0, 0.75),
        -0.025em 0.05em 0em rgba(0, 0, 255, 0.75);
    }
    70% {
        text-shadow: 
        0em 0.025em 0em rgba(255, 0, 0, 0.75),
        -0.025em 0.025em 0em rgba(0, 255, 0, 0.75),
        0.025em -0.025em 0em rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 
        0em 0.025em 0em rgba(255, 0, 0, 0.75),
        -0.025em 0.025em 0em rgba(0, 255, 0, 0.75),
        0.025em -0.025em 0em rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: 
        0.025em 0em 0em rgba(255, 0, 0, 0.75),
        -.025em -0.025em 0em rgba(0, 255, 0, 0.75),
        0.025em 0.05em 0em rgba(0, 0, 255, 0.75);
    }
}