function fix() { const greeting = document.getElementById("greeting"); greeting.innerText = "🎄Merry Christmas!🎄" greeting.style.fontFamily = "Mountains of Christmas"; }
//Stretch goals: // - Add an extra theme, and the option to switch between them. // - Change the message and theme to a New Year’s one automatically on December 31st.