JSFiddle - React, Tailwind, and code Playground

HTML

<div class="review--container">
  <div>
    <h3>
      Karakter: 70/100
    </h3>
    <p>
      <span class="review--category">Kategori: Respektabel</span><br>
      Hvordan basere jeg denne vurdering?
    </p>
    <p>
      Læs mere her: <a href="https://whiskyhuset.net/guide-til-scoringssystem/"> til mit scoringssystem</a>
    </p>
  </div>
  <img class="review--image" src="https://whiskyhuset.net/wp-content/uploads/2019/12/Ikon.png" />
</div>

CSS

.review--container {
  display: flex;
  align-items: center;
}

.review--category {
  font-weight: bold;
}

.review--image {
  width: 120px;
  margin-left: 30px;
}