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

*:focus,
*:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}

html {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg: #000000;
  --ink: #f3f1f6;
  --muted: rgba(243, 241, 246, 0.6);
  --line: rgba(243, 241, 246, 0.14);
  --card: #111014;
  --font: "Figtree", system-ui, sans-serif;
  --font-logo: "Syne", system-ui, sans-serif;
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: clip;
  background: var(--bg);
}

body {
  min-height: 100dvh;
  color: var(--ink);
  font-family: var(--font);
}

img {
  max-width: 100%;
  height: auto;
}
