Menu

Order Summery - 0 Items

Your cart is empty.

Item added to cart
const numberOfStars = 120; // Increased count slightly for a fuller feel // Define a palette of vibrant colors '#ff5555', // Red '#55ff55', // Green '#55aaff', // Blue '#ffff55', // Yellow '#ff55ff', // Magenta '#55ffff', // Cyan '#ffffff' // White // 1. Randomly pick a color from our palette star.style.color = randomColor; // For the box-shadow glow effect // 2. Randomize position // 3. Randomize animation timing star.style.animationDuration = `${Math.random() * 3 + 2}s`; // Duration between 2s and 5s star.style.animationDelay = `${Math.random() * 3}s`; // Delay up to 3s // 4. Make stars bigger const size = Math.random() * 4 + 2; // Size between 2px and 6px