vertical left and center align div code example
Example 1: css align items vertical center
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: centering css elements
// add to the parent element
.parent {
display: grid;
place-items: center;
}