JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrap">
        <div id="main">

<p style="color:#fff;">Lorum Ipsum</p>

    </div>

</div>


    <div id="copyright-bg">
        <p class="copyright-text">Lorum Ipsum</p>
    </div>

CSS

html, body{
    font-size:1em;
    font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
       line-height:1.438em;
    color:#222;
    margin: 0;
    padding: 0;
    text-align: justify;
    height:100%;    
background: rgb(0,0,0); /* Old browsers */
background: -moz-linear-gradient(top, rgba(0,0,0,1) 25%, rgba(209,209,209,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,rgba(0,0,0,1)), color-stop(100%,rgba(209,209,209,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#d1d1d1',GradientType=0 ); /* IE6-9 */
}
html, body {height: 100%;}

#wrap {min-height: 100%;}

#main {overflow:auto;
    padding-bottom: 20px;}  /* must be same height as the footer */

#copyright-bg {position: relative;
    margin-top: -20px; /* negative value of footer height */
    height: 20px;
    clear:both;
        background: #666666;
    border-top: 0.313em solid #E31836;
    padding:1.250em;
} 

/*Opera Fix*/
body:before {
    content:"";
    height:100%;
    float:left;
    width:0;
    margin-top:-32767px;/
}

.copyright-text{
    color:#f3f3f3;
}