JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
  <div class="parent__child"><p>1</p></div>
  <div class="parent__child"><p>2</p></div>
  <div class="parent__child"><p>3</p></div>
  <div class="parent__child"><p>4</p></div>
  <div class="parent__child"><p>5</p></div>
</div>

CSS

* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 0;
}

.parent {
  padding: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -100px;
	margin-left: -500px;
	display: inline-flex;
	justify-content: space-around;
	flex-direction: row;
	width: 1000px;
	min-height: 200px;
	background: rgba(40, 40, 20, .2);
}

.parent__child {
	width: 110px;
	height: 200px;
	background: red;
	box-sizing: border-box;
}

p {
  font-size: 150px;
  color: #1b1b1b;
  text-align: center;
  line-height: 194px;
}