JSFiddle - React, Tailwind, and code Playground
HTML
<p>Lorem ipsum</p>
<p class="shadow">Lorem ipsum</p>
CSS
p {
background-color: fuchsia;
color: rgba(0, 0, 0, 0.5);
font-size: 400%;
font-weight: bold;
margin: 0.25em;
}
.shadow {
text-shadow: 0.05em 0.05em white;
}