const greeting = document.getElementById("greeting")
const btn = document.getElementById("btn")
function fix() {
// Task:
// - Write a function to fix the UI problems with this Christmas message (make it Christmassy!)
greeting.innerHTML = "<p>π¦ππ¦ππ¦ Have a Merry Christmas and a Happy New Year!π¦ππ¦ππ¦</p>"
// - Run the function when the Fix button is clicked.
}
btn.addEventListener('click',() => {
fix()
})
//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.