JSFiddle - React, Tailwind, and code Playground

HTML

<div>
  <img src="http://allaboutlogos.weebly.com/uploads/3/9/9/5/3995277/1396604_orig.jpg">
</div>

CSS

div {
  background-image: url(https://htmlcolorcodes.com/assets/images/html-color-codes-color-tutorials-hero-00e10b1f.jpg);
  background-position: center center;
  background-size: cover;
  padding: 50px 0;
}

img {
  display: block;
  margin: 0 auto;
  width: 200px;
  border-radius: 50%;
}