Answer:
To center anything, vertically and horizontally. Wrap it inside a div then style it with css.
html:
<div class="centered-image">
<img src="path/to/image/here"/>
</div>
css:
.centered-image {
display: flex;
justify-content: center;
align-items: center;
}