/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    backdrop-filter:blur(2px);
}

/* Modal Content/Box */
.modal-content {
    border-radius: 15px;
    background-color: #005eb8;
    margin: 3% auto;
    padding: 30px;
    border: 0;
    color: white;
    _max-width:800px;
    min-height:600px;
}

/* The Close Button */
.close {
    display: flex;
    margin-left: -70px;
    color: rgba(255,255,255,.5);
    font-size: 150px;
    margin-top: -90px;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
