:root {
  color-scheme: dark;
  --ink: #f5f3ea;
  --field: #07100c;
  --accent: #8fcf8f;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--field);
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background: var(--field);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.link-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.link-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.link-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-bottom: 1px solid transparent;
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.15;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.link-list a:hover,
.link-list a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}

@media (min-width: 720px) {
  .link-list {
    gap: 20px;
  }

  .link-list a {
    font-size: 1.6rem;
  }
}
