JSFiddle - React, Tailwind, and code Playground

HTML

<div id="grow">
  <div id="project">
    <span>1</span>
    <br>
    <span>PROJECT</span>
  </div>
  <div id="client">
    <span>0</span>
    <br>
    <span>CLIENTS</span>
  </div>
  <div id="months">
    <span>6</span>
    <br>
    <span>MONTHS</span>
  </div>

</div>

CSS

#grow {
  display: inline-block;
  height: 450px;
  width: 99.8%;
  border: 1px solid red;
  overflow: hidden;
}

#project,
#client,
#months {
  border: 1em solid red;
  border-radius: 100%;
  width: 160px;
  height: 120px;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

#project,
#client,
#months {
  border: 1em solid blue;
  text-align: center;
  padding-top: 40px;
  font-size: 35px;
}

#project span:first-child,
#client span:first-child,
#months span:first-child{
  text-decoration: underline;
  font-size: 25px;
}
#months {
  margin-left: radius;
}