.img-modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0; top:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.85);
    justify-content:center;
    align-items:center;
}

.img-modal-content{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn{
    from{transform:scale(0.7);opacity:0}
    to{transform:scale(1);opacity:1}
}

.img-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:35px;
    font-weight:bold;
    cursor:pointer;
}