/* Gaya untuk pop-up yang memenuhi layar */ .popup { display: flex; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: black; /* Mengubah menjadi putih penuh */ } /* Konten dalam pop-up */ .popup-content { text-align: center; } /* Gaya untuk gambar/logo */ .popup-content img { width: 200px; margin-bottom: 20px; }