.image-card {
    border: none;
    border-radius: 0px;
    overflow: hidden;
    min-width: 300px;
    height: 400px;
    cursor: pointer;
}

.image-card-background {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform:scale(1);
    transition:all 0.5s ease-in-out;

}

.image-card-background.background-zoom {
    transform:scale(1.1);
}