JSFiddle - React, Tailwind, and code Playground

HTML

<div class="title flex">
  <span class="big">1</span>
  <span class="small">st</span>
</div>

CSS

.title span {
  font-family: 'Gill Sans MT Pro Condensed', 'Gill Sans MT', 'Gill Sans';
}
        .title .big {
            font-size: 250px;
        }

        .title .small {
            font-size: 60px;
        }