/*.box {
    width: 40%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
    }
*/
.button {
        cursor: pointer;
       /* transition: all 0.3s ease-out;*/
    }
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(111, 99, 99, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
}
.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 50%; /* Adjust width as needed */
    max-width: 600px; /* Set a maximum width */
    position: relative;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: 'Noto Sans', sans-serif; /* Use Google Font */
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #3535e3;
    transition: color 0.3s ease;
}

.popup .close:hover {
    color: #8529e0; /* Change color on hover */
}

.popup .content {
    max-height: 60vh; /* Limit height with scrolling if needed */
    overflow: auto;
}

@media screen and (max-width: 768px) {
    .popup {
        width: 90%; /* Adjust width for smaller screens */
    }
}