/* Row centering */
div {
display: flex;
flex-direction: row; /* Optional -- default flex-direction is row */
justify-content: center; /* center horizontally */
align-items: center; /* center vertically */
}
/* Column centering */
div {
display: flex;
flex-direction: column;
justify-content: center; /* center vertically */
align-items: center; /* center horizontally */
}