body{
    margin: 0;
    background-color: bisque;
    display: grid;
    justify-content: center;
}

.s-img{
    margin: 0px;
    padding: 0px;
    object-fit: cover;
    cursor: pointer;
    transition: width 250ms ease, height 250ms ease;
}

.s-img:hover{
    transform: scale(0.97);
}