*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #ffffff;
}
.popup{
    background-color: #fbf4ee;
    width: 600px;
    z-index: 100;
    padding: 20px 30px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-style: solid;
    border-color: gray;
    border-width: 1px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    display: none;
    text-align: center;

}
.popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: #faf0e6;
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    border: none;
    outline: none;
    cursor: pointer;
}
.popup p{
    font-size: 15px;
    text-align: left;
    margin: 20px 0;
    line-height: 17px;
}

