JSFiddle - React, Tailwind, and code Playground

by mumptastic

HTML

<h1>MUMPTASTIC</h1>
<h2>do or do not</h2>
<h2>there is no try.</h2>

CSS

body{
 background:#666;   
}

h1{
    display:block;
    font-size:50px;
    font-family:helvetica;
    font-weight:bold;
    background:#000;
    color:#fff;
    text-align:center;
    padding:10px;
    margin-top:100px;
    width:500px;
     
  -webkit-transform: rotate(5deg); 
  -moz-transform: rotate(5deg);
  -o-transform: rotate(5deg);
   transform: rotate(5deg);
}

h2{
    display:block;
    font-size:50px;
    font-family:helvetica;
    font-weight:bold;
    background:yellow;
    color:#000;
    text-align:center;
    padding:10px;
    margin-top:10px;
    width:500px;
    
  -webkit-transform: rotate(-5deg); 
  -moz-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
   transform: rotate(-5deg);

}