* {
    margin: 0;
    padding: 0;
}
.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.flex1 {
    flex: 1;
}
.flex-wrap {
    flex-wrap: wrap;
}
.justify-center {
    justify-content: center;
}
.align-center {
    align-items: center;
}
.justify-around {
    justify-content: space-around;
}
