:root {
  color-scheme: dark;
  --blue: #0f1be6;
  --white: #fffdf8;
  --soft: rgba(255, 253, 248, 0.92);
  --quiet: rgba(255, 253, 248, 0.26);
  --column: 668px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--blue);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--blue);
  color: var(--white);
  font-family:
    "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
}

a {
  color: var(--white);
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.13em;
}

a:hover {
  text-decoration: none;
}

.topic {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.13em;
}

.page {
  width: min(var(--column), calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 60px 0 28px;
}

.logo {
  display: inline-block;
  margin: 0 0 70px;
  color: var(--white);
  font-family:
    "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 72px;
  color: var(--white);
  font-size: clamp(56px, 5vw, 65px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.19;
}

.text {
  max-width: 660px;
}

.text p,
.list p,
.footer p {
  margin-bottom: 30px;
  color: var(--soft);
  font-size: clamp(25px, 2.1vw, 27px);
  font-weight: 300;
  line-height: 1.5;
}

.list {
  margin-top: 10px;
}

.footer {
  margin-top: 42px;
  padding-bottom: 8px;
}

.contact-link {
  display: inline-block;
  margin-bottom: 96px;
  color: var(--white);
  font-size: clamp(25px, 2.1vw, 27px);
  font-weight: 300;
}

.identity,
.copyright {
  margin: 0;
  color: var(--quiet);
  font-size: clamp(25px, 2.1vw, 27px);
  font-weight: 300;
}

.identity {
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  body {
    font-size: 22px;
  }

  .page {
    width: min(100% - 34px, var(--column));
    padding-top: 36px;
  }

  .logo {
    margin-bottom: 58px;
    font-size: 48px;
  }

  h1 {
    margin-bottom: 54px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.16;
  }

  .text p,
  .list p,
  .contact-link,
  .identity,
  .copyright {
    margin-bottom: 24px;
    font-size: clamp(21px, 6vw, 26px);
  }

  .contact-link {
    margin-bottom: 68px;
  }

  .identity {
    margin-bottom: 8px;
  }
}

@media (min-width: 1400px) {
  .page {
    transform: translateX(10px);
  }
}
