Navigate the World of Martin's Snack Attack

document.addEventListener("DOMContentLoaded", function () { const modal = document.getElementById("msa-modal"); const btn = document.querySelector("a[href='#learn-more']"); const closeBtn = document.querySelector(".msa-close"); if(btn){ btn.addEventListener("click", function(e){ e.preventDefault(); modal.style.display = "block"; }); } closeBtn.addEventListener("click", function(){ modal.style.display = "none"; }); window.addEventListener("click", function(e){ if (e.target === modal) { modal.style.display = "none"; } }); });