/*------------------------------------*\
  #RESET & BASE STYLES
\*------------------------------------*/

/* 1. Document Root & Box Sizing */
html {
  -webkit-text-size-adjust: 100%;
}

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

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

/* 2. Body Defaults */
body {
  margin: 0;
  background-color: #fff;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.25;
}

/* h1 {
    margin-top: 0.67em;
    margin-bottom: 0.67em;
}

h2 {
    margin-top: 0.83em;
    margin-bottom: 0.83em;
}

h3 {
    margin-top: 1em;
    margin-bottom: 1em;
}

h4 {
    margin-top: 1.33em;
    margin-bottom: 1.33em;
}

h5 {
    margin-top: 1.67em;
    margin-bottom: 1.67em;
}

h6 {
    margin-top: 2.33em;
    margin-bottom: 2.33em;
} */

/* Paragraphs */
p {
  line-height: 1.5;
  margin: 0;
}