JSFiddle - React, Tailwind, and code Playground

HTML

<div id=statistics>
     <div id=stats>
        <div>42 <span>WEB DESIGN PROJECTS</span></div>
        <div>42 <span>WEB DESIGN PROJECTS</span></div>
        <div>42 <span>WEB DESIGN PROJECTS</span></div>
        <div>42 <span>WEB DESIGN PROJECTS</span></div>
     </div>
</div>

CSS

#statistics {
    background-color: #95e1d3;
    color: white;
    height: 200px;
    width:100%;
    text-align: center;
}
#statisctics #stats{
    display:block;
    margin-left:200px;
    margin-top:100px;
}

#statistics #stats div {
    display: block;
    float: left;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    width: 200px;
    border: 0.5px solid white;
}

#statistics span {
    font-size: 14px;
    font-weight: normal;
    display: block;
}