@font-face {
  src: url('/fonts/OutputSans-Regular.woff2') format("woff2"),
       url('/fonts/OutputSans-Regular.woff') format("woff");
  font-family: 'Output';
  font-style: normal;
  font-weight: normal;
}

@font-face {
  src: url('/fonts/OutputSans-Italic.woff2') format("woff2"),
       url('/fonts/OutputSans-Italic.woff') format("woff");
  font-family: 'Output';
  font-style: italic;
  font-weight: normal;
}

@font-face {
  src: url('/fonts/OutputSans-Medium.woff2') format("woff2"),
       url('/fonts/OutputSans-Medium.woff') format("woff");
  font-family: 'Output';
  font-style: normal;
  font-weight: 500;
}

@font-face {
  src: url('/fonts/OutputSans-MediumItalic.woff2') format("woff2"),
       url('/fonts/OutputSans-MediumItalic.woff') format("woff");
  font-family: 'Output';
  font-style: italic;
  font-weight: 500;
}

@font-face {
  src: url('/fonts/OutputSans-Bold.woff2') format("woff2"),
       url('/fonts/OutputSans-Bold.woff') format("woff");
  font-family: 'Output';
  font-style: normal;
  font-weight: bold;
}

@font-face {
  src: url('/fonts/OutputSans-BoldItalic.woff2') format("woff2"),
       url('/fonts/OutputSans-BoldItalic.woff') format("woff");
  font-family: 'Output';
  font-style: italic;
  font-weight: bold;
}


/* Eric Meyer's Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

:root {
  --color-bg: hsl(0 0% 100%);
  --color-text: hsl(0 0% 35%);
  --color-heading: hsl(0 0% 0%);
  --color-muted: hsl(0 0% 55%);
  --color-link: hsl(199 100% 45%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: hsl(0 0% 0%);
    --color-text: hsl(0 0% 75%);
    --color-heading: hsl(0 0% 100%);
    --color-muted: hsl(0 0% 55%);
  }
}


html {
  -webkit-text-size-adjust: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 19px;
  padding: 5em 5em 3em;
  font-family: "Output", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

body {
  max-width: 36em;
  line-height: 1.5;
}

body > *:first-child {
  padding-top: 0 !important;
}

h1,
h2,
h3 {
  color: var(--color-heading);
  font-weight: bold;
  line-height: 1.1;
}

h2 {
  padding-top: 6em;
}

h3 {
  font-weight: 500;
  padding-top: 2.5em;
}

strong,
strong a {
  font-weight: bold;
}

em {
  font-style: italic;
}

p {
  margin-top: 1em;
}

blockquote {
  position: relative;
  color: var(--color-muted);
  padding-left: 1em;
  margin-top: 2em;
  margin-bottom: 2em;
}

blockquote::before {
  content: "“";
  color: var(--color-text);
  font-weight: 400;
  font-size: 1.5em;
  float: left;
  position: absolute;
  top: -0.25em;
  left: 0;
}

blockquote cite {
  color: var(--color-muted);
  display: block;
  text-align: right;
  font-style: normal;
}

blockquote cite a {
  color: var(--color-text);
}

ul,
ol {
  margin-top: .75em;
}

ul {
  list-style-type: none;
  padding-left: 1em;
}

li {
  line-height: 1.2;
  margin-top: .4em;
}

ul > li:before {
  content: "–";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

a {
  font-weight: 500;
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.cols {
  margin-left: -0.75em;
  margin-right: -0.75em;
}
.cols:after {
  content: "";
  display: table;
  clear: both;
}

.col {
  display: block;
  float: left;
  width: 100%;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.width-1\/2 {
  width: 50%;
}

.black {
  color: var(--color-heading);
}

.medium {
  font-weight: 500;
}

.pt0 { padding-top: 0; }

.mt0 { margin-top: 0; }
.mt1 { margin-top: 1em; }
.mt2 { margin-top: 1.5em; }
.mt3 { margin-top: 2em; }
.mt4 { margin-top: 3em; }

@media screen and (max-width: 800px) {
  html {
    font-size: 17px;
    padding: 3em;
  }

  body {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 16px;
    padding: 8% 6.25%;
  }
}

@media screen and (max-width: 400px) {
  html {
    font-size: 15px;
  }
}
