.flexRow{
    display: flex;
    flex-direction: row;
}

.flexCol{
    display: flex;
    flex-direction: column;
}

.justifyCenter{
    justify-content: center;
}

.spaceBetween{
    justify-content: space-between;
}

.spaceAround{
    justify-content: space-around;
}

.flexStart{
    justify-content: flex-start;
}

.flexEnd{
    justify-content: flex-end;
}

.alignCenter{
    align-items: center;
}

.alignFlexEnd{
    align-items:flex-end;
}

.textCenter{
    text-align: center;
}

.italic{
    font-style: italic;
}

.uppercase{
    text-transform: uppercase;
}

.shrink{
    flex-shrink: 0;
}

