.modal {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.45);

    z-index: 10000;

    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal__content {
    background: white;

    padding: 40px;

    border-radius: 16px;

    min-width: 400px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.modal__content p {
    margin-bottom: 25px;

    font-size: 18px;
}

.modal__content button {
    border: none;

    background: #138a36;
    color: white;

    padding: 12px 30px;

    border-radius: 999px;

    cursor: pointer;
}