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

* {
  margin: 0;
  padding: 0;
  font: inherit;
  user-select: none; /* Prevents text selection */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
}

html {
  color-scheme: dark light;
  hanging-punctuation: first last;
}


body {
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p,
li,
figcaption {
  text-wrap: pretty;
  max-width: 65ch;
}


header, footer
main,
section, 
article {
  container-type: inline-size;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding-left: 0;
}

a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

#root, #__next {
   isolation: isolate;
}

p {
  line-height: 1.4;
}

em {
  font-style: italic !important;
}