.btn-modal {
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

.modal-wrapper {
    z-index: 999999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
}

.modal {
    position: fixed;
    left: 50vw;
    top: 50vh;
    background-color: white;
    color: #000;
    padding: 30px 40px;
    padding-top: 40px;
    border-radius: 10px;
    width: 50em;
    margin-left: -25em;
    margin-top: -18em;
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.6);
}

.modal p {
    margin-bottom: 1em;
}

.modal .btn-close {
    display: block;
    font-size: 26px;
    line-height: 18px;
    text-align: center;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 15px;
    color: #000;
    cursor: pointer;
}