:root {
  color-scheme: light;
  --ink: #141414;
  --paper: #f6f5f2;
  --muted: #5c5a56;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  width: min(32rem, 100%);
  padding: 2.5rem 1.25rem;
  text-align: center;
}

h1 {
  margin: 0;
}

.logo {
  width: min(17.5rem, 72vw);
  height: auto;
}

.soon {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.langs a {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.langs a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.langs a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 0.3em;
}
