Align all the items in the flexbox in the centre of the horizontal axis. code example
Example 1: css flex center
display: flex;
align-items: center;
justify-content: center;
Example 2: center flex
.flex-container {
display: flex;
height: 300px;
justify-content:
center;
align-items: center;
}