document.addEventListener('DOMContentLoaded', function () { const launchButton = document.querySelector('.myQuizLauncher'); const introSection = document.getElementById('quizIntro'); const quizSection = document.getElementById('quizContainer'); if (launchButton && introSection && quizSection) { launchButton.addEventListener('click', function () { introSection.style.display = 'none'; quizSection.style.display = 'block'; }); } });