/* 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: 12% auto;
    padding: 30px;
    border: 0;
    color: white;
    max-width:800px;
    height:600px;
    overflow:hidden;
}

/* The Close Button */
.close {
    display:flex;
    margin-left:auto;
    color: #aaa;
    font-size: 70px;
    font-weight: bold;
    margin-top:-30px;
    margin-left:-40px;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
