.row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Create two equal columns that sits next to each other */
.cell {
    width: 80px;
    max-width: 80px;
}

.cell img {
    width: 100%;
    height: auto;
    border: 1px solid black;
}
