JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<span>Text</span>
</div>
CSS
div{
width: 100%;
max-width: 800px;
background-color: #f00;
position: relative;
}
div:after{
content: '';
display: block;
padding-top: 50%;
}
span{
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
transform: translateY(-50%);
}