/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    backdrop-filter: blur(5px); /* Apply blur effect */
}

/* Modal Content */
.modal-content {
    background-color: #001521eb;
    margin: 15rem auto auto auto;
    padding: 20px;
    border: 1px solid #fd6202;
    width: 80vw; /* Could be more or less, depending on screen size */
    display: block;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* locks the background */
.no-scroll {
    overflow: hidden;
}
