@piko @selfsame
To shake things up!
setInterval(() => document.querySelectorAll("html *").forEach(e=>e.style.transform=`translate(${(Math.random()*4)-2}px,${(Math.random()*4)-2}px) rotate(${(Math.random()*0.5)-0.25}deg)`),250);
@nblr @piko @selfsame To make the changes more smooth, run this beforehand:
document.querySelectorAll("html *").forEach(e=>e.style.transition=`transform 0.25s ease 0s`)