div#home{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div#home > *{
    margin: 10px 0;
}

div.column{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
div.row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
div.row.reverse{
    flex-wrap: wrap-reverse;
}

div.boxed{
    border: solid 1px #BBBBBB;
    border-radius: 2px;
    margin: 10px;
}
