* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

body.has-admin-menu {
  background: var(--bg-alt);
}

a {
  color: var(--link);
}

a:hover,
a:focus {
  text-decoration: underline;
}

::selection {
  background: var(--accent-soft);
  color: var(--primary-contrast);
}

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}
