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;
    text-align: center;
}

#stats {
    width: 200px;
    margin: 0 auto;
}

#stats div {
    font-size: 50px;
    font-weight: bold;
    border: 0.5px solid white;
}

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