.wf-active body {
    opacity: 1;
    transform: translateY(0px);
    transition: all 500ms ease-in-out;
}

::-webkit-scrollbar {
    display: none;
    /* hidding scrollbar */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
  padding: 30px;
  line-height: 1.6em;
  font-family: "Inconsolata";
  font-size: 18px;
  color: #f8daaf;
  opacity: 0;
  transform: translateY(30px);
  background-color: #1f1f21;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
    font-size: 24px;
    margin: -1px 0 1px 0;
    /*text-indent: -1px;*/
    text-indent: 7.5px;
}

ol {
    list-style-position: inside;
    list-style-type: decimal-leading-zero;
}

a,
a:visited {
    text-decoration: none;
    color: #80b2c9;
}

a:hover {
    font-weight: 700;
}

span {
    position: relative;
    margin-left: -1px;
    background: #2e2f30;
    display: inline;
    font-size: 14px;
    padding: 3px 6px;
    border-radius: 3px;
    line-height: 3.2em;
}

div.easteregg {
    position: fixed;
    font-size: 10px;
    width: 100%;
    bottom: 1px;
}

div.indented{
    text-indent: 1em;
}