JSFiddle - React, Tailwind, and code Playground

HTML

<h1 data-text="hello">hello</h1>

CSS

h1 {
  font-size: 72px;
  background-image: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position:relative;  
}
h1:after {
  background: none;
  content: attr(data-text);
  left: 0;
  position: absolute;
  text-shadow: 1px 1px 2px #000;
  top: 0;
  z-index: -1;
}