JSFiddle - React, Tailwind, and code Playground
HTML
<div class="upperSection">
<img src="https://picturethismaths.files.wordpress.com/2016/03/fig6bigforblog.png?w=419&h=364">
<div class="upperBox">
<div class="description">
<span class="header"><br>Header</span>
<br><br>
<span class="text">Text Goes here</span>
</div>
</div>
</div>
CSS
.upperSection{
display:flex;
justify-content: center;
flex-wrap: wrap;
}
.upperBox{
background-color:white;
text-align: center;
verticle-align:middle;
}
.description{
background-color: white;
}