JSFiddle - React, Tailwind, and code Playground
by NekR
HTML
<div>Text</div>
CSS
div{
width:300px;
height:200px;
font-size:38px;
font-family:verdana;
color: #eee;
background:orange;
line-height:180px;
text-align:center;
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(orange));
background: -moz-linear-gradient(top, #fff, orange);
background: -o-linear-gradient(top, #fff, orange);
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(255, 255, 255, 0.4);
}