/* // script.js // Add any JavaScript code here to enhance the website's functionality. // For example, you can use JavaScript to handle user interactions or dynamically update the content. // Example of dynamically updating content const h2Elements = document.querySelectorAll('h2'); h2Elements.forEach((h2) => { h2.addEventListener('click', () => { h2.style.color = '#00ff00'; }); }); */