.popup{
    width: 350px;
    height: 329px;
    background: #333;
    border-radius: 20px;
    position: fixed;
    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;

}

.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);

}




.popup img{
    width: 50px;
    margin-top: -30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0,2 green, blue, alpha);
}
.popup h2{
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
    color: #f8f6f6;
}

.popup p{
    font-size: 20px;
    font-weight: 100;
    margin: 30px 0 10px;
    color: #f8f6f6;
}

.popup button{
    width:100px;
    margin: 70px;
    padding: 10px 0;
    background: rgb(110, 181, 219);
    color: #f9f6f6;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0,0,0,0,2 green, blue, alpha);

}