.cards {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card {
    height: 400px;
    width: 300px;
    cursor: pointer;
    background-size: cover;
    transition: all 1s ease;
}