:root {
  --color-background: #fffff2;
  --color-text: #1e2767;
  --font-body: "Instrument Sans", sans-serif;
  --text-size: 14px;
  --text-leading: 1.5;
  --message-max-width: 334px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Root frame — Desktop - 1 (1:3) */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0;
  background-color: var(--color-background);
  font-family: var(--font-body);
  font-variation-settings: "wdth" 100;
}

/* Centered content band (1:6) */
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  padding: 64px 32px;
  overflow: hidden;
}

/* Text block (1:4) — fills available width, capped at 334px */
.message {
  flex: 1 0 0;
  min-width: 0;
  max-width: var(--message-max-width);
  color: var(--color-text);
  font-size: var(--text-size);
  font-weight: 400;
  font-style: normal;
  line-height: var(--text-leading);
  word-break: break-word;
  white-space: pre-wrap;
}

.message p {
  margin: 0;
}

.message a {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
