.flex {
    display: flex;
}
.block {
    display: block;
}
.inline {
    display: inline;
}
.grid {
    display: grid;
}

.row {
    flex-direction: row;
}
.column {
    flex-direction: column;
}

.justifyCenter {
    justify-content: center;
}
.justifyBetween {
    justify-content: space-between;
}
.justifyAround {
    justify-content: space-around;
}
.justifyEvenly {
    justify-content: space-evenly;
}
.justifyStart {
    justify-content: flex-start;
}
.justifyEnd {
    justify-content: flex-end;
}

.alignCenter {
    align-items: center;
}
.alignStart {
    align-items: flex-start;
}
.alignEnd {
    align-items: flex-end;
}

