top of page
bottom of page
document.addEventListener('DOMContentLoaded', function() {
const links = document.querySelectorAll('a');
links.forEach(link => {
link.addEventListener('click', function(event) {
event.preventDefault();
const href = this.href;
document.body.style.transition = 'opacity 1s';
document.body.style.opacity = 0;
setTimeout(() => {
window.location.href = href;
}, 1000);
});
});
});