* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text-primary);
}

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

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

select option {
  background: var(--surface);
  color: var(--text-primary);
}

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