JSFiddle - React, Tailwind, and code Playground
by jakie8
HTML
<div class="container">
<span class="first">Live for today</span>
<span class="sec">Plan for tomorrow</span>
<span class="third">Party tonight</span>
<span class="fourth">Party tonight</span>
</div>
CSS
body{
background:#000;
margin:0;
padding:0;
text-transform:uppercase;
color:#fff;
font-family:arial;
}
.container{
width:700px;
margin:20px auto;
}
span{
display:block;
font-size: 60px;
font-weight: bold;
}
.sec{
font-size:44px;
}
.third, .fourth{
font-size: 62px;
}
.fourth{
color:#999;
}