#clock{
    text-align: center;
    font-size: 6rem;
    /* animation: flicker 1.5s infinite alternate; */
    color: rgb(255, 255, 255);
    margin-top: 200px;
    /* font-family: 'Bebas Neue', cursive; */
    font-family: 'Zen Dots', cursive;

    
    
}
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

  
/* @keyframes flicker { */
    
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
  
        text-shadow:
        0 0 4px #fff,
        0 0 11px #fff,
        0 0 19px #fff,
        0 0 40px rgb(189, 79, 152),
        0 0 80px rgb(121, 31, 182),
        0 0 90px rgb(155, 32, 192),
        0 0 100px rgb(194, 37, 173),
        0 0 150px rgb(167, 31, 167);
    
    }
    
    20%, 24%, 55% {        
        text-shadow: none;
    }    
  }