<!doctype html>
<title>Example</title>
<style>
.wrapper {
display: flex;
}
.wrapper > div {
font-size: 4vh;
color: white;
background: hotpink;
margin: .1em;
padding: .3em;
border-radius: 3px;
flex: 1;
.wrapper .wrapper > div {
background: pink;
color: hotpink;
</style>
<div class="wrapper">
<div>1
<div>1</div>
<div>2</div>
<div>3</div>
</div>
<div>4</div>
<div>5</div>