html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: none;
}
html::-webkit-scrollbar {
  display: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--mc-font);
  font-size: var(--mc-font-size-lg);
  line-height: 1.6;
  color: var(--mc-text);
  background: var(--mc-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--mc-accent);
  outline-offset: 2px;
}
