:root {
  color-scheme: dark;
  --background: #000;
  --foreground: #fff;
  --line: #fff;
  --font-ocr: "OCR A Std", "OCR A Extended", "OCR A", "Courier New", "Miriam Mono CLM", "Noto Sans Hebrew", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-ocr);
  font-synthesis: none;
  letter-spacing: 0;
}

.landing {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
}

.site-links {
  display: grid;
  width: min(100%, 520px);
  gap: 14px;
}

.site-button {
  display: grid;
  min-height: 56px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--foreground);
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  line-height: 1.15;
  padding: 14px 18px;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-button:hover,
.site-button:focus-visible {
  background: var(--foreground);
  color: var(--background);
  outline: none;
}

@media (max-width: 520px) {
  .landing {
    padding: 18px;
  }

  .site-links {
    gap: 10px;
  }
}
