JSFiddle - React, Tailwind, and code Playground
HTML
<h1>
some text
</h1>
<div class="sh">
<!-- пустой div -->
</div>
CSS
body{
background-color: #fff;
}
h1 {
font-size: 64px;
background-color: #565656;
color: transparent;
text-shadow: 0px 2px 3px rgba(255,255,255,0.5);
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
}
.sh{
height: 200px;
width: 400px;
background: url(http://lorempixum.com/400/200/transport/2);
box-shadow: inset 5px 5px 10px 10px rgba(255,255,255,1);
}