@font-face {
    font-family: "fallingsky";
    src: url("fallingsky.otf");
}


@font-face {
    font-family: "inconsolata";
    src: url("inconsolata.otf");
}

html {
  font-size: 18px;
}

body {
  background-color: #f2f0e5;
  color: #212123;
  /* font-family: var(--fontstack-serif); */
  font-family: fallingsky;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 650px;
  padding: 1em;
  box-sizing: border-box;
}


/***
 * Basics
 * ======
 */
em {
  font-style: italic;
}
strong {
  font-weight: bold;
}
small {
  font-size: 0.75em;
}
p {
  margin: 1.025em 0;
}
blockquote {
  background: rgba(255, 255, 255, 0.05);
  border-left: solid;
  margin: 1em 0;
  padding-left: 1em;
  padding: 0.5em 1em;
}


/***
 * Headers 
 * ======= 
 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fontstack-sans);
  margin: 0 0 1rem 0;
  color: #80493a;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 32px;
  margin-top: 1em 0 0.5em 0;
  margin-bottom: 1em;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 16px;
}

/***
 * Links
 * =====
 */
a {
  color: #b45252;
}


/***
 * Code
 * ====
 */
pre {
  padding: 0.5em 0.2em;
}
pre, pre code {
  background-color: #b2b47e;
  color: #212123;
  font-family: inconsolata;
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 1.25;
  overflow-y: scroll;
}

code {
    color: #80493a;
    font-family: inconsolata;
    letter-spacing: 0.5px;
    font-size: 16px;
}


/***
 * Lists
 * =====
 */
dd {
  margin: 0 0 0.5em 2em;
}


/***
 * Utilities
 * =========
 */
.u-fullwidth {
  left: 50%;
  position: relative;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}


/* <figure> */
/* <img src="/i/ui-complete.png" title="Complete" alt="" /> */
/* <figcaption>A complete setup</figcaption> */
/* </figure> */

figure{/* display:flex; */
       justify-content:center}

img{width:100%}

figcaption{text-align:center;
           padding-bottom:20px;
           padding-top:10px;
            width:100%
          }
