put image in the middle of the div code example
Example 1: align image to the center of the screen
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Example 2: how to center an image element inside a block in css
img { display:block;
margin-left: auto;
margin-right:auto;
}