// This script just adds a little print button to the page. It's not needed for the zine, unless you want to add one too! document.querySelector(".print-button").addEventListener("click", () => { window.print(); });