Ham Legs
/* --------------------------------
SPARKLE GENERATOR
---------------------------------*/
const sparkleContainer = document.getElementById('sparkles');
const sparkleCount = 90;
for (let i = 0; i < sparkleCount; i++) {
const s = document.createElement('div');
s.className = 'sparkle';
const size = Math.random() * 2 + 2;
s.style.width = size + 'px';
s.style.height = size + 'px';
s.style.left = Math.random() * 100 + 'vw';
s.style.top = Math.random() * 100 + 'vh';
s.style.animationDelay = Math.random() * 4 + 's';
s.style.animationDuration = 3 + Math.random() * 4 + 's';
sparkleContainer.appendChild(s);
}