.glitch-effect {
position: relative;
animation-duration: 1s;
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;
}
}