*{
    margin: 0;
    padding: 0;
}

.containerrs{
    display: flex;
    width: 100%;
    height: 0%;
    min-width: 1615.65px;
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 2014.76px;
    max-height: 1030.8px;
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.popup{
    width: 400px;
    height: 150px;
    background: #ffe5d6;
    border-radius: 6px;
    border: 2.5px solid black;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;z-index: 12;
}
.open-popup{
    visibility: visible;
    top: 42%;
    transform: translate(-50%, -50%) scale(1);
}

.popup img{
    width: 77px;
    margin-top: -41px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.popup h2{
    font-size: 23px;
    font-weight: 500;
    margin: 22px 0 10px;
}

.popup button{
    width: 18%;
    margin-top: 14px;
    padding: 10px 0;
    background: #6fd649;
    /* color: #fff; */
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 2px 5px 5px black;
}

.popup button:hover{
    background: #43b819;
}