404
The page you're looking for seems to have drifted off into space. Don't worry, our astronauts are on the case!
// Add some interactive fun document.addEventListener('DOMContentLoaded', function() { const stars = document.querySelectorAll('.star'); // Random star movement stars.forEach(star => { setInterval(() => { const randomX = Math.random() * 100; const randomY = Math.random() * 100; star.style.left = randomX + '%'; star.style.top = randomY + '%'; }, 3000 + Math.random() * 2000); }); // Easter egg: click the rocket const astronaut = document.querySelector('.astronaut'); astronaut.addEventListener('click', function() { this.style.animation = 'bounce 0.5s ease-in-out'; setTimeout(() => { this.style.animation = ''; }, 500); }); });