How to set right box position right using flex and also colorful text vertically centered in the box?
.box {
display: flex;
}
.box .left-box {
width: 30%;
}
.box .right-box {
width: 30%;
background-color: #3e9388;
}
<div class="box">
<div class="left-box">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries</div>
<div class="right-box">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
</div>