JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container"> 
    <table><tr><td>Andi der Gute</td><td> Andi <br/> der <br/> Beste</td></tr></table>
    <div id="inner">
    <img class="pageHeading" src="http://www.kaz.net.au/images/temp/coursesHeading2.png" alt=""/>

    <p>Kazcare cooperates with <a href="http://www.weaillawarra.com/index.html">WEA Illawarra</a> to offer a range of educational courses.</p>
    <p>Some of the courses held at Kazcare Education Facilities include: </p>

    <p class="a">
         To view the full range of WEA Illawarra courses held at KazCare please visit <a href="http://enrol.weaillawarra.com/index.html">WEA Illawarra Courses</a>.
    </p>
      

    </div>
</div>

CSS

body{
 background: red;   
}
td {background: blue; border:1px solid #000; border-radius 4px 4px 4px 4px; }
#container{
    background: url(http://f.cl.ly/items/2Q283g3v0q1v1i172028/bg-top.png) 0 top no-repeat; 
    padding-top: 60px;
    display: block;
    width: 830px;
    margin: 0px auto;
    margin-top: 100px;
}

#inner{
    background: url(http://f.cl.ly/items/2h113f2e2e341K3r3S0q/bg-btm.png) 0 bottom no-repeat;
    padding: 50px 40px 50px 40px;
    display: block;
}