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

html {
  height: 100%;
}

body {
  height: 100%;
}

body::selection {
  background-color: var(--high-contrast-text);
  color: var(--app-background);
  -webkit-text-fill-color: initial;
  background-clip: unset;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mantine-font-family-headings), serif;
  text-wrap: var(--mantine-heading-text-wrap);
}

#root {
  display: grid;
  height: 100%;
  isolation: isolate;
}

a {
  cursor: pointer;
}
