@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:wght@400;700;900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Mona Sans', sans-serif;
  background-color: #ffffff;
  color: #111;
}

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-half, .bottom-half {
  flex: 1;
}

.top-half {
  display: flex;
}

.top-left, .top-right {
  flex: 1;
  display: flex;
  align-items: center;
  background-color: #ddd;
  border: 1px solid #aaa;
  font-size: 1.2em;
}

/* Конкретные настройки для блока с текстом */
.top-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #ddd;
  border: 1px solid #aaa;
  text-align: justify;         /* ← ключевой момент */
  line-height: 1.4;
  padding: 0 2vw;
  width: 100%;
  font-size: 1.2em;
}


/* Оформление правой части верхнего блока */
.top-right {
  justify-content: center;
  text-align: center;
}

/* Нижняя половина */
.bottom-half {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ccc;
  border-top: 2px solid #999;
  font-size: 1.2em;
}
