JSFiddle - React, Tailwind, and code Playground

by John Doe

HTML

<div class="lorem_wrap">
  <div class="lorem_cont">
    <div class="left-side" >logo</div>
    <div class="right-side">
      <div>...........</div>
      <div>cégszerű aláírás</div>
    </div>
  </div>
</div>

CSS

.lorem_wrap {
  display: flex;
  justify-content: flex-end;
}
.lorem_cont {
    display: inline-flex;
    column-gap: 1rem;
}
.left-side{
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-side {
    display: flex;
    row-gap: .5rem;
    flex-direction: column;
    text-align: center;
}