
.cards {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 20px;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
}

.card {
    flex: 0 0 200px;
    margin: 20px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
    width: 300px;
    height: 280px;
    background-color: white;
 /*   background-color: yellow;  */
    padding: 20px;
    text-align: center;
}

 .card .text {
        padding: 0 20px 20px;
}

 .card img {
        max-width: 100%;
}

.topCard {
    margin: 10px 0px 0px 0px;
    height: 210px;
}

.centered { text-align: center; margin-left: auto; margin-right: auto; }


