JSFiddle - React, Tailwind, and code Playground
HTML
<div class="img-wrap">
<img src="https://dummyimage.com/600x400/000/000" />
<span>I ARE TEXT</span>
</div>
CSS
.img-wrap{
position: relative;
color: #fff;
font-size: 16px;
}
.img-wrap img{
width: 100%;
}
.img-wrap span{
position: absolute;
top: 50%;
left: 0;
font-size: 10vw;
width: 100%;
text-align: center;
transform: translateY(-50%);
}