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

:root {
  --ink: #17202a;
  --muted: #5f6c7b;
  --paper: #050608;
  --sky: #dbeeff;
  --watermelon: #ff5f77;
  --rind: #2f9c6b;
  --seed: #20242b;
  --line: rgba(23, 32, 42, 0.12);
  --shadow: 0 18px 48px rgba(62, 88, 116, 0.18);
  --tile-max-width: 420px;
}

html {
  min-height: 100%;
  scroll-padding-bottom: 128px;
}

body {
  min-height: 100dvh;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
