JSFiddle - React, Tailwind, and code Playground

HTML

<div class="button">Big Red Button</div>

CSS

.button { 
    margin-top: 10px;color: white;
    text-shadow: 0 1px 0 #333;
    border: #B2B2B2 solid 7px;
    font-size: 1.25em;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    padding: 7px 50px;
    font-weight: normal;
    display: inline-block;
    margin-top: 10px;
    background: #E74909;
    background: -webkit-linear-gradient(top, rgba(231, 73, 9, 1) 0%,rgba(142, 41, 1, 1) 99%);
    background: -o-linear-gradient(top, rgba(231, 73, 9, 1) 0%,rgba(142, 41, 1, 1) 99%);
    background: -ms-linear-gradient(top, rgba(231, 73, 9, 1) 0%,rgba(142, 41, 1, 1) 99%); 
    background: linear-gradient(to bottom, rgba(231, 73, 9, 1) 0%,rgba(142, 41, 1, 1) 99%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e74909', endColorstr='#8e2901',GradientType=0 );

    padding: 7px 50px;
    font-weight: normal;
    display: inline-block;
    margin-top: 10px;
}