Again, with svg we can add the text shadow and letter spacing
<div style='background-color: black; text-align: center;'>
<svg width='380' height='80' viewBox='0 0 380 80'>
<defs>
<style type='text/css'>
.olap {
font-family: "arial black";
font-size: 60pt;
letter-spacing: -15px;
fill: #fff;
text-shadow: -0.08em 0.03em 0.12em rgba(0, 0, 0, 0.7);
}
</style>
</defs>
<text class='olap' x='190' y='70' text-anchor='middle' >OVERLAP</text>
</svg>
</div>