*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   /* color: antiquewhite;*/
}

.popup{
    background-color: #1c3041;
    color: antiquewhite;
    width: 470px;
    padding: 30px 40px;
    position: fixed;
    transform: translate(-59%,-50%);
    left: 59%;
    top: 20%;
    border-radius: 8px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
}
.popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: #d7af5a;
    font-size: 20px;
    /*color: antiquewhite;*/
    border: none;
    outline: none;
    cursor: pointer;
}
.popup p{
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
    color: antiquewhite;
}
