.flexcards400-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
}
.card400 {
 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
}
.card400-header {
 background: #6e0f19;
 padding: .625rem;
 color: #fff;
}
.card400-content {
 flex: 1;
 padding: .625rem
}
.card400-footer {
 flex: 0;
 background: #eee;
 padding: .625rem
}
.card400-content img {
  transition: transform 0.3s ease;
  cursor: pointer;    
}
.card400-content img:hover {
  transform: scale(1.05);    
}
.card400-content a.link {
    border: none;
}