.glitch-effect {
animation-duration: 4s;
animation-name: glitch;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
}
@keyframes glitch {
from {
transform: translate(-6px, -6px);
}
to {
transform: translate(6px, 6px);
}
}