@charset "utf-8";

/*--------------------------*/
/*Reset                     */
/*--------------------------*/
/**/
/*
  A CSS reset style sheet is a list of rules that
  'reset' all of the default browser styles
*/

/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;/*https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align*/
    font-family: inherit;
    outline: none;
    border-style: none;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    -webkit-text-size-adjust: none;
       -moz-text-size-adjust: none;
            text-size-adjust: none;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
    min-height: 100dvh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 1rem;
    line-height: 1.5;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, ol {
    list-style: none;
}

/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

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

p, h1, h2, h3, h4 {
    overflow-wrap: break-word;
}

a, i, figure, img, button,
input[type=button], input[type=submit] {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}


input, button, textarea, select {
    font: inherit;
    outline-style: none;
    border-style: none;
}

input[type=button], input[type=submit], input[type=reset], button, a {
    cursor: pointer;
}

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

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
      scroll-behavior: auto;
    }
  
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
}

/*
  8. Create a root stacking context
*/
#root, #__next {
    isolation: isolate;
}

