how to move the content toward center code example
Example 1: centre align image in div
body {
margin: 0;
}
#over img {
margin-left: auto;
margin-right: auto;
display: block;
}
Example 2: align items center css
.parent_div
{
display:flex;
align-items:center;
}