JSFiddle - React, Tailwind, and code Playground

HTML

<div class="div1"> </div>


<div class="div2">Hey! Text here </div>

CSS

.div1{
    position: relative;
color: #000;
margin-top: 100px;
width: 1020px;
height: 400px;
background-color: #ffffff;
    border:1px solid #000;
}
.div2{
    font-size: 12px;
position: relative;
text-align: left;
color: #000;
margin: auto;
top: 25px;
left: 25px;
    overflow:hidden;
}