.container {
    display: flex;
    flex-flow: row wrap;
}

.item {
    margin: 5px 10px;
    padding: 12px;
    text-align: center;
    background-color: white;
    border: black solid 1px;
    transition: all .2s, box-shadow .2s;
    max-width: 250px;
}
    
.item img {
  width: 100%;
}
    
.item .item-header {
  /* turn this into a header? */
  font-weight: bold;
  font-size: 1.25em;
  margin: 0;
  vertical-align: middle;
}
    
.item .item-header-language {
    font-style: italic;
    font-size: 0.75em;
    margin: 0;
    vertical-align: top;
}
    
.item:hover {
    transform: scale(1.055);
    box-shadow: -2px 2px black;
}

/* to test vertical-align of item-header and item-header-language */
@media (max-width: 800px) {
    .item {
        max-width: 150px;
    }
}