make flex wrap centered code example
Example 1: css flex center
display: flex;
align-items: center;
justify-content: center;
Example 2: center wrapped flex children
.container {
display: flex;
justify-content: space-around;
/* OR */
justify-content: space-evenly;
}