This bookstore contains NUDITY and material which may OFFEND.
`; // Append to body document.body.appendChild(overlay); // Fade in overlay setTimeout(function() { overlay.style.opacity = '1'; }, 50); // Button hover effect var button = document.getElementById('enter-button'); button.addEventListener('mouseover', function() { button.style.backgroundColor = '#000'; button.style.color = '#fff'; }); button.addEventListener('mouseout', function() { button.style.backgroundColor = '#fff'; button.style.color = '#000'; }); // Button click: fade out overlay button.onclick = function() { overlay.style.opacity = '0'; setTimeout(function() { overlay.style.display = 'none'; localStorage.setItem('ageWarningAccepted', 'true'); }, 600); }; });