JSFiddle - React, Tailwind, and code Playground
by mackry
HTML
<div class="background">
</div>
<div class="wrap">
<h1>WIZARD</h1>
</div>
CSS
@import url(http://fonts.googleapis.com/css?family=Metamorphous);
html,body { height: 100%;
min-height: 100%; }
.background {
background-image: -webkit-radial-gradient(50% 102%, circle cover, rgba(155,179,151,1) 0%,rgba(70,113,107,1) 16%,rgba(41,81,88,1) 32%,rgba(2,31,53,1) 48%,rgba(4,8,32,1) 64%,rgba(3,7,31,1) 80%,rgba(2,11,20,1) 100%);
height: 100%;
width: 100%;
}
.wrap {
margin: 0 auto;
text-align: center;
height: 100px;
width: 300px;
}
h1 {
font-family: "Metamorphous";
color: white;
font-size: 30px;
text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}