*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    display:grid;
    place-items: center;
    width: 100%;
    height: 100vh;
    background-color: #3E54AC;
}

.img-container{
    width: 370px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 250ms ease;
    position: relative;
}

.img-container img{
    left: -50%;
    filter: grayscale(1);
    position: absolute;
    transition: all 200ms ease;
}

/* .img-container:hover{
    
} */

.img-container:hover img{
    filter: grayscale(0);
    transform: scale(1.1);
}