﻿*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  line-height: 1.5;
}

.space-y-1 > * + * {
  margin-top: 0.25rem; /* 4px */
}

.grid {
  display: grid;
}

.gap-2 {
  gap: 0.5rem; /* 8px */
}
