JSFiddle - React, Tailwind, and code Playground

HTML

<div class="content">
  <div class="row"> 
    <div class="flex">
      <img src="https://i.imgur.com/XSHe86n.png"/>
    </div>
  </div>
</div>

CSS

.flex {
  width: 900px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: green;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.content {
    background-color: yellow;
    max-width: 100%;
}

.row {
  background-color: red;
}