under the center section we have
.container{
display: flex;
justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
}
It would be better to add:
.container{
display: flex;
justify-content: center;
}
And do this for each section, it would be easier to follow
Nicolas Barlatier
under the center section we have
.container{ display: flex; justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe; }
It would be better to add:
.container{ display: flex; justify-content: center; }
And do this for each section, it would be easier to follow