JSFiddle - React, Tailwind, and code Playground

HTML

<div class="shape">
  <span style="font-size:72px;"> 7 </span>
  <br />
  <span style="font-size:18px;"> minutes to Applecross High School </span>
  <br />
</div>

CSS

.shape {
   width: 200px;
   height: 250px;
   color: #4F5E73;
   margin: 20px auto;
   background-color: rgb(236, 236, 236);
   text-align: center;
 }
 
 span {
   position: relative;
   top: 20%;
 }