.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}

.modal {
    width: 90vw;
    height: 1100px;
    display: flex;
    justify-content: center;
    align-items: middle;
    
    position: fixed;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
    display: none;
}

.modal table td{
    font-size: 40px;
}

#close-modal{
    font-size: 40px;
    padding: 25px;
}