@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Barlow:100,200,300,400,500,600,700,800,900&display=swap");
/** Poor man's reset **/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html, body {
  /*background: #fff;*/
  margin: 0;
  padding: 0; }

body {
  font-size: 100%;
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0; }

h1 {
  font-weight: 300;
  margin: 0;
  padding: 0 1rem; }

h2, h3 {
  margin: 0;
  padding: 0; }

h2 {
  border-left: 6px solid #e93335;
  padding-left: 12px; }

pre,
code {
  display: block;
  overflow: hidden;
  /* Use horizontal scroller if needed; for Firefox 2, not needed in Firefox 3 */
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap !important;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  /*messes up flow* width: 99%; /* remove horizontal scroll-bar when viewing in IE7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  font: 13px/150% 'Consolas';
  margin: 0;
  padding: 0; }

pre a {
  float: left;
  clear: both;
  color: grey;
  text-decoration: none; }
  pre a:hover {
    color: #e93335; }

/* 1. Enable smooth scrolling */
html {
  scroll-behavior: smooth; }

/* 2. Make nav sticky */
main > nav {
  position: -webkit-sticky;
  position: sticky;
  width: 15em;
  top: 0;
  bottom: 0;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  border-right: 1px solid #efefef; }

/* 3. ScrollSpy active styles (see JS tab for activation) */
#section-nav li.active > a {
  color: #333;
  font-weight: 500; }

/* Sidebar Navigation */
#section-nav {
  padding-left: 0;
  border-right: 1px solid #efefef; }
  #section-nav ol > li {
    padding: 10px;
    border-bottom: 1px solid #efefef; }
  #section-nav ol ul {
    margin-left: 6px; }
  #section-nav a {
    text-decoration: none;
    display: block;
    color: #ccc;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    /* 💡 This small transition makes setting of the active state smooth */ }
    #section-nav a:hover, #section-nav a:focus {
      color: #666; }

/** page layout **/
main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15em 1fr;
      grid-template-columns: 15em 1fr;
  max-width: 100em;
  width: 90%;
  margin: 0 auto; }

/** enlarge the sections for this demo, so that we have a long scrollable page **/
section {
  border-bottom: 1px solid #efefeF;
  background-color: rgba(255, 255, 255, 0.025);
  overflow: hidden; }
  section a {
    color: #333;
    text-decoration: none; }
    section a:hover {
      color: #e93335; }

.outersection {
  min-height: 50vh; }
  .outersection div {
    margin: 1.5em; }
  .outersection ul {
    border-left: 6px solid #efefef;
    padding-left: 12px; }
  .outersection .linkage {
    border-left: 6px solid #efefef;
    padding-left: 12px; }

.innersection {
  min-height: auto;
  margin: 1.5em;
  border-bottom: 0; }
  .innersection h3 {
    border-left: 6px solid #ddd;
    padding-left: 12px; }
  .innersection ul {
    border: 0;
    padding: 0;
    border-left: 6px solid #efefef;
    padding-left: 12px; }
    .innersection ul li {
      padding: 0;
      margin: 0; }
  .innersection .linkage {
    border-bottom: 0;
    border-left: 0;
    padding: 0; }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #222; }

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 200px;
  background: #333;
  border: 0;
  overflow: hidden; }
  .pace .pace-progress {
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 200px;
    position: fixed;
    z-index: 200;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #444; }
  .pace.pace-inactive {
    display: none; }

#particles-js {
  position: fixed;
  z-index: -1;
  width: 100%; }

.who {
  font-size: 14px;
  padding: 10px;
  background-color: #e93335;
  color: #f5f5f5; }
/*# sourceMappingURL=style.css.map */