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

html {
  width: 100%;
  min-height: 100%;
  background-color: var(--DeepVoidBlackColor);
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a, button, [role="button"], summary, label, input[type="checkbox"] {
  touch-action: manipulation;
}

@media (max-width: 999px) and (pointer: coarse) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--DeepVoidBlackColor);
  color: var(--PureWhiteColor);
  font-family: var(--PrimaryBodyFontFamily);
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

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