
.popup {
    width: 400px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    height: 85%;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 489px) {
    .popup {
        width: 300px;
    }
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.popup img {
    width: 20px;
    margin-top: 10px;
    margin-right: -20px;
    float: right;
    border-radius: 50%; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.popup h3 {
    font-size: 32px;
    font-weight: 500;
    margin: 30px 0 10px ;
}


.popup p {
    font-size: 14px;
}

.popup button {
    width: 100%;
    margin-top: 10px;
    padding: 10px 0;
    background: #c99927;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#overlay{
	display: none;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
}


