JSFiddle - React, Tailwind, and code Playground

HTML

<span class="logo">@andmag</span>

CSS

.logo {
  font-size: 64PX; /*step 1*/
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /*step 2*/
  color: transparent;/*step 3*/
  background-color: #F9F9F9;/*step 4*/
  background-clip: text;/*step 5*/
}