let checkFooter = setInterval(function() {
   let footerRights = document.querySelector('.s-footer__copyright p');
   if (footerRights) {
      footerRights.textContent = 'Powered by Creative Piece Co.';
      clearInterval(checkFooter);
   }
}, 100);