JSFiddle - React, Tailwind, and code Playground

HTML

<div class="section5">
	<div class="outer">

		<div class="container1">
			<img src="http://images.all-free-download.com/images/graphiclarge/daisy_pollen_flower_220533.jpg" width="85">
			<div class="title1">Text</div>
			<div class="subtitle1">Text</div>	
		</div>

		<div class="container2">
			<img src="http://images.all-free-download.com/images/graphiclarge/daisy_pollen_flower_220533.jpg" width="375"> 
			<div class="subtitle2">Text</div>
		</div>

	</div>
</div>

CSS

.section5{ height: 525px;	background-color: #5e6172;	text-align: center; position: relative;}
    .outer{ width: 80%; background-color: #45da45;  height: 100%; margin: 0 auto; position: relative;} 

.title1{color: #ffffff; font-size: 2.6em; font-family: h35;   }
.subtitle1{color: #ffffff; font-size: 1.5em; font-family: h35; margin-top: 0.25em; }
.subtitle2{color: #ffffff; font-size: 1.5em; font-family: h35; margin-top: 0.25em; }

.container1{display: block; background-color: #ccc;  }
.container2{display: block; background-color: #fffc1e;   }