:root {
  --fontStack-sansSerif:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --fontStack-monospace:
    "Monaspace Neon", ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas,
    Liberation Mono, monospace !important;
}

html {
  color-scheme: light dark;
}

body {
  font-family: var(--fontStack-sansSerif);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  margin: 0;
  padding: 1rem;
  height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

pre {
  font-family: var(--fontStack-monospace);
  overflow: auto;
}

body > main {
  flex: 1;
}

table {
  table-layout: fixed;
}

table td:first-child {
  font-variant-numeric: tabular-nums;
}

#globe {
  width: 500px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

canvas {
  display: block;
}
