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