Thoughts
Beautiful CSS
```css
body {
animation: flicker 0.5s infinite;
}
@keyframes flicker {
from {filter: hue-rotate(30deg) blur(0.7px) contrast(95%);}
to {filter: hue-rotate(0deg) blur(0.5px) contrast(105%);}
}
```
Anything more than 1px of blur makes the site unusable.
I need a way to get some shaking or horizontal lines or something.
Also it's quite laggy lol