JSFiddle - React, Tailwind, and code Playground

HTML

<div class="outer">
    <div class="inner rotate">Bosnia-Herzegowina | CEE | Finance Berlin ICHWERDEDASHIERNOCHSCHAFFEN</div>
</div>

CSS

.outer {
  background-color: pink;
  width: 50px;
  position: relative;
  display: inline-block;
  margin: 0 15px;
  height: 150px;
}

.inner {
  font-size: 13px;
  font-color: #878787;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #DDD;
  width: 150px;
  
}

.rotate {
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  transform:  translateX(-50%) translateY(-50%) rotate(-90deg);
}