  body {
      background: black;
      color: lime;
      font-family: monospace;
      text-align: center;
      padding-top: 100px;
    }
    .glitch {
      font-size: 3rem;
      position: relative;
      color: white;
    }
    .glitch::before, .glitch::after {
      content: attr(data-text);
      position: absolute;
      left: 0;
      width: 100%;
      overflow: hidden;
    }
    .glitch::before {
      animation: glitchTop 1.5s infinite linear;
      color: red;
    }
    .glitch::after {
      animation: glitchBottom 1.5s infinite linear;
      color: blue;
    }
    @keyframes glitchTop {
      0% { clip: rect(0, 9999px, 0, 0); }
      10% { clip: rect(0, 9999px, 30px, 0); }
      20% { clip: rect(0, 9999px, 0, 0); }
    }
    @keyframes glitchBottom {
      0% { clip: rect(0, 9999px, 0, 0); }
      10% { clip: rect(20px, 9999px, 60px, 0); }
      20% { clip: rect(0, 9999px, 0, 0); }
    }