
.home-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Latar belakang transparan yang sedikit gelap */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-container {
    background: transparent;
    padding: 20px;
    border-radius: 5px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
    text-align: center;
    position: relative;
}

.popup-container img {
    max-width: 100%; /* Maksimum lebar gambar dalam popup */
    width: 600px;
    height: auto; /* Sesuaikan tinggi gambar sesuai dengan lebar */
}



.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1bad4b;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}