.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: rgb(255, 255, 255);
    border: 1px solid #888;
    border-radius: 5%;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 500px;
    width: 500px;
    border: 1.5px solid black;
    box-shadow: 10px 10px rgba(85, 85, 85, 0.458);

    /* centering */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: none;
}

.canvasholder {
    overflow-y: auto;
    height: 500px;
    width: 500px;
    border-radius: 0%;
}

.close {
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

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

.cropbtn {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 60px;
    margin-bottom: 10px;
    border: 1px solid black;
    box-shadow: 4px 4px rgb(70, 70, 70);
    color: white;
    background-color: black;
    border-radius: 0;
    cursor: pointer;
}