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

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

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

:root {
  --bg: #ffffff;
  --ink: #141414;
  --muted: rgba(20, 20, 20, 0.55);
  --soft: #f2f2f0;
  --font: "Outfit", system-ui, sans-serif;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}
