JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
<div class="box__inner">
<h1 class="title">anthony watkins</h1>
<span class="subtitle">VP of Product, VISA</span>
</div>
</div>
CSS
body{
background: #333;
}
.box{
display: flex;
justify-content: center;
}
.box::after{
content: '';
display: block;
position: absolute;
z-index: 1;
top: 50px;
width: 100%;
height: 2px;
background: orange;
}
.box__inner{
background: #333;
padding: 30px;
text-align: center;
position: relative;
z-index: 3;
color: #fff;
}
.title{
color: orange;
text-transform: uppercase;
margin: 0;
}