const advBanner = document.querySelector('.advertisement')
if (advBanner){
const linkElement = document.createElement('a');
linkElement.href = 'https://thesyrenprotocols.com/';
linkElement.classList.add('advertisement', 'advertisement--hover');
while (advBanner.firstChild) {
linkElement.appendChild(advBanner.firstChild);
}
advBanner.parentNode.replaceChild(linkElement, advBanner);
}