/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}
body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  color: hsla(0, 0%, 0%, 0.85);
  background: rgb(230, 230, 230);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}
img { max-width: 100%; display: block; border: 0; }
a { color: rgb(36, 36, 36); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; background: none; border: 0; padding: 0; cursor: pointer; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}
h1 { font-size: 2.25rem; font-weight: 600; }
h2 { font-size: 1.625rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 300; }
h4 { font-size: 1.25rem; font-weight: 400; }
p { margin: 0 0 1.25rem 0; }
hr { border: 0; height: 1px; background: hsla(0, 0%, 0%, 0.15); margin: 1.25rem 0; }
code { font-family: 'SFMono-Regular', Consolas, 'Roboto Mono', Menlo, monospace; font-size: 0.9em; background: #ddeeff; padding: 0.1em 0.3em; border-radius: 3px; }
pre { background: #ddeeff; border-left: 0.5em solid #8ccbf2; padding: 1rem 1.25rem; overflow: auto; }
pre code { background: none; padding: 0; }

body.no-scroll { overflow: hidden; }
