.popup{
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.4);
    border: 10px solid purple;
    background-color: #f2cfee;
    width: 600px;
    padding: 30px 40px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
}
.popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 45px;
    color: #a5a5a5;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup h2{
    font-size: 24px;
    text-align: center;
    margin: 20px 0;
    line-height: 25px;
    color: purple;
}
.popup p{
    font-size: 18px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
    color: purple;
}
a{
    display: block;
    width: 150px;
    position: relative;
    margin: 10px auto;
    text-align: center;
    background-color: #0f72e5;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
}