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