<!DOCTYPE html>
<body>
<div id="container">
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
</div>
</body>
<style>
#container {
width: 30vmin;
height: 30vmin;
background: green;
display: inline-block;
}
.block {
width: 10vmin;
height: 10vmin;
background: red;
}
</style>
</html>
#container {
display: flex;
flex-direction: column;
justify-content: center;
}