JSFiddle - React, Tailwind, and code Playground
HTML
<div class="body">
<h1 data-content="Project">Project</h1>
</div>
CSS
.body {
background-color: #000;
font-family: 'Arial Narrow',sans-serif;
height: 100vh;
display: flex;
flex-direction:row;
align-items:center;
justify-content: center;
}
h1 {
color:#fff;
font-weight: 900;
text-transform: uppercase;
font-size: 50px;
position: relative;
}
h1:after {
color:rgba(255,255,255,0.3);
font-size:80px;
content:attr(data-content);
position: absolute;
top: 50%;
left: 50%;
margin-top: -90.5px;
margin-left: -208.5px;
}