JSFiddle - React, Tailwind, and code Playground

HTML

<div class="site">

	<div class="page">
		<h1 class="lede"> Hello <a href="#">World</a>  </h1>
		
		<div class="welcome"> 
		
					<p>&#8220;Let&#8217;s go to town,&#8221; I said.</p>

					<p>They looked at me admiringly. With three hundred almost indestructible androids on the loose I was the big brave hero. I grinned at them and hoped they couldn&#8217;t see the sweat on my face. Then I walked over to the Copter and climbed in.</p>

					<p>&#8220;Coming?&#8221; I asked.</p>

					<p>Jack was pale under his freckles but Chief Dalton grinned back at me. &#8220;We&#8217;ll be right behind you, Morrison,&#8221; he said.</p>

					<p>Behind me! So they could pick up the pieces. I gave them a cocky smile and switched on the engine, full speed.</p>

					<p>Carron City is about a mile from the plant. It has about fifty thous
		
		</div>
		<div class="blog section">
		
		<div class="main">
					
					<p>&#8220;Let&#8217;s go to town,&#8221; I said.</p>

					<p>They looked at me admiringly. With three hundred almost indestructible androids on the loose I was the big brave hero. I grinned at them and hoped they couldn&#8217;t see the sweat on my face. Then I walked over to the Copter and climbed in.</p>

					<p>&#8220;Coming?&#8221; I asked.</p>

					<p>Jack was pale under his freckles but Chief Dalton grinned back at me. &#8220;We&#8217;ll be right behind you, Morrison,&#8221; he said.</p>

					<p>Behind me! So they could pick up the pieces. I gave them a cocky smile and switched on the engine, full speed.</p>

					<p>Carron City is about a mile from the plant. It has about fifty thousand inhabitants. At that moment, though, there wasn&#8217;t a soul in the streets. I heard people calling to each other inside their houses, but I didn&#8217;t see anyone, human or android. I circled in for a landing, the Police Copter hovering maybe a quarter of a mile back of me. Then, as the wheels touched, half a dozen androids came around the corner. They saw me and stopped, a...

CSS

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	background:red;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.page{
	margin: 36px auto;
	width:90%;
	background:gray;
  overflow: hidden;
	
}

.welcome{
	float:right;
	margin: 0 auto 53px;
	background:green;
	width: 40.875%;
	
}

 .blog {
	
	clear: left;
    float: left;
    margin: 0 0 20px;
    width: 49.375%;
} 

.main{
	
	width: 62.88%;
}

.other{
	
	width: 36.777%;
	
}

.lede{
	
	font-size: 1.5em;
}

.lede a {
	
	font-size:0.45833333em;
	
}