.flexcards-container {
 display: -webkit-flex;
 display: flex;
 -webkit-flex-direction: row;
 flex-direction: row;
 -webkit-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-justify-content: center;
 justify-content: center
}
.card {
 display: flex;
 flex-direction: column;
 min-width: 200px;
 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
 border-radius: 5px;
 overflow: hidden;
 margin: 10px
}
.card-header {
 background: #d9d9d9;
 padding: .625rem;
 font-weight: bold;
}
.card-content {
 flex: 1;
 padding: .625rem
}
.card-footer {
 flex: 0;
 background: #d9d9d9;
 padding: .625rem;
 font-size: 14px
}