:root{
  --project-vp-min: 320px;
  --project-vp-max: 1280px;
}

*, *::before, *::after {
  box-sizing: border-box; /* Enforce this globally */
  font: inherit;
}


*:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

/* Ensure no element can inherit a content-box model from the browser default */
html {
  box-sizing: border-box;
}

html{
  color-scheme: dark light ;
}

html,
body {
  margin: 0;
  padding: 0;
  scrollbar-gutter: stable;
}


body {
  min-height: 100dvh;
  min-width: 100dvw;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

section {
  display: block;  
  width: 100%;
}


img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================================================
   TYPOGRAPHY RESET
   ========================================================= */


/* Links inherit tone by default */
a {
  color: inherit;
  text-decoration: none;
}

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

p {
  font-size: 1rem;
  text-wrap: pretty;
  font-weight: 400;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  overflow-wrap: break-word;
}


h1{font-size:2rem;}
h2{font-size:1.6rem;}
h3{font-size:1.4rem;}
h4{font-size:1.2rem;}
h5{font-size:1.1rem;}
h6{font-size:1.1rem;font-style: italic;}

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


#root, #__next {
  isolation: isolate;
}

.button{
  outline-color: transparent;
}