JSFiddle - React, Tailwind, and code Playground

HTML

<div class="test">
<img src="http://via.placeholder.com/350x150">
</div>

CSS

.test {
  display: flex;
  justify-content: center;
  background-color: orange;
  width: 700px;
  height: 700px;
}

.test img {
  align-self: center;
}