.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 280px;
    margin: 10px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: -1px 2px 4px rgba(0,0,0,.25), 1px 1px 3px rgba(0,0,0,.1);
    transition: box-shadow ease-in-out 250ms;
}

.card:hover {
    box-shadow: -2px 4px 8px rgba(0,0,0,0.25), 2px 2px 6px rgba(0,0,0,0.22);
}

.card a.primary {
    width: 100%;
}

.card img {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

.card .cardText {
    padding: 10px;
}

.card .cardText h2 {
    margin-top: 0;
}

.card .cardText p {
    margin-top: 8px;
}

.card .cardText a {
    display: block;
    text-align: right;
    font-size: 18px;
}