.glitch-effect { position: relative; animation-name: glitch; animation-iteration-count: infinite; animation-direction: alternate; animation-timing-function: linear; } @keyframes glitch { from { top: -4px; left: -4px; } to { top: 4px; left: 4px; } }