#item-content{
    width:200px;
    height: 200px;
    overflow: hidden;
    margin: 20px;
}
img{
    width: 100%;
    height: 100%;
    transition: 0.5s;
    object-fit: cover;
}
img:hover{
    transform: scale(1.2);
}