Seeking assistance with aligning the text in the center of the flexboxes so that the h4 and p elements in the large box are centered within their respective boxes, as well as ensuring the text in the two smaller boxes is also centered. Any help would be greatly appreciated.
body {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.equal-height-container {
margin: 0 auto;
display: flex;
height: 100vh;
}
.first {
background-color: #fff;
padding: 20px;
flex: 1;
}
.second {
background-color: yellow;
flex: 1;
display: flex;
flex-direction: column;
}
.second-a {
background-color: #c0dbe2;
flex: 1;
padding: 20px;
}
.second-b {
background-color: honeydew;
flex: 1;
padding: 20px;
}
<div class="equal-height-container">
<div class="first">
<h4>Feature1</h4>
<p>Lorem Ipsum is a placeholder text used by the printing and publishing industry. Lorem ipsum has been the standard dummy text since the 1500s.</p>
</div>
<div class="second">
<div class="second-a">
<h4>Feature1</h4>
<p>Lorem Ipsum is a placeholder text used by the printing and publishing industry. Lorem ipsum has been the standard dummy text since the 1500s,</p>
</div>
<div class="second-b">
<h4>Feature1</h4>
<p>Lorem Ipsum is a placeholder text used by the printing and publishing industry. Lorem ipsum has been the standard dummy text since the 1500s,</p>
</div>
</div>