JSFiddle - React, Tailwind, and code Playground
HTML
<div id="wrapper">
<div id="parent">
<h1 id="child">A Fantastic Title<br/>→</h1>
</div>
</div>
CSS
#wrapper {
display: flex;
justify-content: center;
}
#parent {
width: 550px;
height: 343px;
background-image: url(https://media-cdn.tripadvisor.com/media/photo-s/08/73/aa/76/trolltunga.jpg);
background-size: contain;
}
#child {
position: relative;
top: 50%;
right: 6%;
}