#Modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: scroll;

}

.Modal-content {
    background-color: #fefefe;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
}

.hide-Modal {
    display: block;
    margin-top: -20px;
    margin-right: -10px;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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