    <style>
        @keyframes glitch {
            0% { text-shadow: 2px 2px red, -2px -2px white; }
            25% { text-shadow: -2px -2px red, 2px 2px white; }
            50% { text-shadow: 2px -2px red, -2px 2px white; }
            75% { text-shadow: -2px 2px red, 2px -2px white; }
            100% { text-shadow: 2px 2px red, -2px -2px white; }
        }

        body {
            background-color: black;
            color: white;
            font-family: monospace;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .glitch {
            animation: glitch 1s infinite alternate;
            opacity: 0.5; /* 50% transparency */
            text-align: center;
            white-space: pre;
        }
    </style>