// Select the toggle button and the section element
const toggleButton = document.querySelector('.toggle-button');
const section = document.querySelector('.wrap-up-down-section');
// Add event listener to the button
toggleButton.addEventListener('click', () => {
// Toggle the 'open' class to animate the section
section.classList.toggle('open');
});