BACK TO HOMEPAGE

BACK TO HOMEPAGE 

EXPLORE TOOLS CONTACT US 

 

// Optional: Add earth spin on hover document.addEventListener('DOMContentLoaded', function() { const earth = document.querySelector('.object_earth'); if (earth) { earth.addEventListener('mouseenter', function() { this.style.animation = 'spin-earth 100s infinite linear both'; }); earth.addEventListener('mouseleave', function() { this.style.animation = 'none'; }); } });