// close modal document.querySelector(".close-modal").addEventListener("click", () => document.getElementById("appModal").style.display = "none"; ); window.addEventListener("click", (e) => const modal = document.getElementById("appModal"); if (e.target === modal) modal.style.display = "none"; );
.app-card:hover transform: translateY(-5px); box-shadow: 0 20px 25px -12px rgba(0,0,0,0.15); appsafe club
/* main container */ .container max-width: 1300px; margin: 2rem auto; padding: 0 1.5rem; // close modal document