.blur {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #0000008e;
    z-index: 9999999;
}

.popup {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 350px;
    border-radius: 32px;
    background: #30343b;
    transform: translate(-50%, -50%);
    z-index: 9999999;
}

.popup > p, .popup > .button {
    margin-left: 50px;
    text-align: left;
    width: 500px;
}

.popup > h1 {
    margin-top: 10px;
}

.button {
    margin-bottom: 15px;
    color: #fff;
    border: none;
    width: 500px;
    cursor: pointer;
    transition: .3s;
    text-align: left;
    padding: 7px 20px;
    border-radius: 32px;
    background-color: #eac13a;
    vertical-align: middle;
}

.button > p > i {
    margin-top: 3px;
    font-size: 18px;
    color: #30343b;
}

.button > p > span {
    margin-left: 15px;
    line-height: 20px;
    margin-bottom: 2px;
}

.button:hover {
    box-shadow: 0 1px 3px #0000001f, 0 1px 2px #0000003d;
    background-color: #9e8328;
}

a {
    color: #eac13a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}