.glitch {
   position: absolute;
   left: 100px;
   top: 100px;
   /* text-align: center; */

   animation-duration: 3s;
   animation-iteration-count: infinite;
   animation-timing-function: steps(1, end);

}

#glitch_0 {
   animation-name: glitch_animation_0;
}

#glitch_1 {
   animation-name: glitch_animation_1;
}

/* @keyframes glitch_animation_0 {
   0% {
      color: black;
      left: 100px;
   }
   50% {
      color: red;
      left: 110px;
   }
   55% {
      color: black;
      left: 100px;
   }
}

@keyframes glitch_animation_1 {
   0% {
      color: black;
      left: 100px;
   }
   50% {
      color: blue;
      left: 90px;
   }
   55% {
      color: black;
      left: 100px;
   }
} */