.img{
    width: 200px;
    height: 150px;
    cursor: pointer;
    border-radius: 4px;
    transition: .4s ease;
}

.img:hover{
    opacity: .6;
}

.modal-win{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    text-align: center;
    display: none;
    z-index:10000;
}

.modal-win #close-modal{
    position: absolute;
    cursor: pointer;
    font-size: 35px;
    font-weight: bold;
    color: white;
    top: 15px;
    right: 35px;
    display: block;
}

.modal-win #close-modal:hover{
    color: #cfcfcf;

}

.modal-win #img-modal{
    margin-top: 120px;
    width: 80%;
    border-radius: 10px;
    animation-name: zoom;
    animation-duration: 1s;
    animation-timing-function: ease;
}

@media (max-width: 700px){
    .modal-win #img-modal{
        width: 100%;
        border-radius: 0px;
    }
}

@keyframes zoom{
    from{
        transform: scale(0);
    }

    to{
        transform: scale(1);
    }
}