.bg-modal {
    width: 100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    display: none;
    justify-content: center;
    align-items: top;
    display:flex;
    overflow: hidden;
    
}

.modal-content {
    max-width: 500px;
    max-height:87%;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    position: relative;
    top: 20px;    
}

.modal-content img {
    max-width: 500px;
    max-height: 100%;
}

.close a {
    text-decoration: none;
    color: black;
}

.close {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 50px;
    font-weight: bolder;
    
}

.close:hover {
 cursor: pointer;
}