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