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