align div content screen vertically and horizontally code example
Example 1: how to make a division center css
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
Example 2: center css elements
body{
display: grid;
place-items: center;
}