JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<h1>Main Title</h1>
<h2>Sub Title</h2>
</div>
CSS
div{
position:relative;
width:50%;
margin:20% auto;
background:#eee;
}
h2{
position:absolute;
top:1em;
text-align:center;
}
h1{
margin-top:3em;
}