Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
const container = document.querySelector('.floating-dots-container');
const dotCount = 500;
for (let i = 0; i < dotCount; i++) {
const dot = document.createElement('div');
dot.classList.add('dot');
dot.style.top = Math.random() * 100 + '%';
dot.style.left = Math.random() * 100 + '%';
dot.style.setProperty('--x', `${Math.random() * 100 - 50}px`);
dot.style.setProperty('--y', `${Math.random() * 100 - 50}px`);
dot.style.animationDuration = `${15 + Math.random() * 20}s`;
dot.style.animationDelay = `${Math.random() * 10}s`;
dot.style.opacity = Math.random() * 0.4 + 0.2;
container.appendChild(dot);
}