JSFiddle - React, Tailwind, and code Playground

HTML

<section>
  <p>
Some animals in the wild, like hummingbirds,have long names.
  </p>
</section>

CSS

body {
  font-family: sans-serif;
}

section {
  width: 115px;
  background: gold;
  display: flex;
  justify-content: center;
}

section p {
  width: 75px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}