.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    margin: 2%;
    
}

.card-image {
    height: 1px;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    display: block;
    overflow: hidden;
}

.image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .4s ease-in-out;
}

.image:hover {
    transform: scale(1.03);
    cursor: pointer;
}