@charset "UTF-8";
:root {
    --font-color: #c8ccd4;
    --background-color: #1e222a;
    --accent-color: #98c379;
    --hover-color: #b6d5a1;
    --background: #191a1a;
    --foreground: #e5d09a;
}
*,
:after,
:before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    box-sizing: inherit;
}
a {
    color: #61afef;
}
a:hover {
    color: #90c7f3;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.main-menu {
    position: absolute;
    display: none;
    left: -200px;
    top: 0;
    height: 100%;
    overflow-x: visible;
    z-index: 999;
    width: 100%;
}
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 2.5em 0 0;
    min-width: 50%;
    background: var(--background-color);
    text-align: right;
}
.main-menu a {
    display: block;
    line-height: 1em;
    font-size: 2em;
    color: var(--accent-color);
    text-decoration: none;
}
.main-menu a:focus,
.main-menu a:hover {
    color: var(--hover-color);
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
}
.main-menu:target,
.main-menu[aria-expanded="true"] {
    display: block;
    left: 0;
    outline: 0;
    position: fixed;
    display: flex;
    justify-content: center;
}
.main-menu:target ul,
.main-menu[aria-expanded="true"] ul {
    position: relative;
    z-index: 1000;
}
.main-menu:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: var(--background-color);
    cursor: default;
}
@supports (position: fixed) {
    .main-menu,
    .main-menu:target + .backdrop,
    .main-menu[aria-expanded="true"] + .backdrop {
        position: fixed;
    }
}
@media (min-width: 800px) {
    .main-menu {
        position: relative;
        left: auto;
        top: auto;
        height: auto;
        display: block;
    }
    .main-menu ul {
        display: flex;
        padding: 0;
        box-shadow: none;
        height: auto;
        width: auto;
        background: 0 0;
    }
    .main-menu a {
        color: var(--accent-color);
        border: 0 !important;
        font-size: 1em;
    }
    .main-menu a:focus,
    .main-menu a:hover {
        background: 0 0;
        color: var(--hover-color);
        text-decoration: underline;
        text-decoration-thickness: 0.1em;
    }
}
header {
    padding: 20px;
    display: flex;
    align-items: baseline;
}
article {
    padding: 30px;
    max-width: 55em;
    font-size: 16px;
    line-height: 1.5em;
}
article h2 {
    font-weight: 500;
    font-size: 28px;
}
.logo {
    margin: 0 30px 0 10px;
    font-size: 1.5em;
}
body,
html {
    background-color: var(--background-color);
    color: var(--font-color);
    display: flex;
    flex-flow: column;
    height: 100%;
}
html {
    box-sizing: border-box;
    font: 95% -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Oxygen-Sans, Ubuntu, Cantarell, helvetica neue, sans-serif;
    -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 800px) {
    html {
        font-size: 100%;
    }
}
@media screen and (min-width: 1400px) {
    html {
        font-size: 115%;
    }
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5rem;
}
h1 {
    font-size: 2.121rem;
    line-height: 2.25rem;
    margin-top: 2.25rem;
}
h2 {
    font-size: 1.414rem;
}
h3 {
    font-size: 1.17833333rem;
}
h4 {
    font-size: 0.98194444rem;
}
h5 {
    font-size: 0.81828704rem;
}
p {
    margin-top: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.5rem;
}
ul {
    padding-left: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
ul li {
    padding: 0.75em 15px;
    margin-bottom: 3em;
    line-height: 1.5em;
    line-height: 1.5rem;
}
ul ul {
    margin-top: 0;
    margin-bottom: 0;
}
.burger__container {
    height: 4rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: fixed;
    width: 100%;
    background: var(--background-color);
    z-index: 2;
    border-bottom: 3px groove #1e222a;
}
@media screen and (min-width: 800px) {
    .burger__container {
        display: none;
    }
}
.burger {
    position: relative;
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.burger__meat {
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--font-color);
    top: calc(50% - 2px / 2);
    left: calc(50% - 28px / 2);
    transition: all 150ms ease-in;
}
.burger__meat--1 {
    transform: translateY(-10px);
}
.burger__meat--2 {
    width: calc(28px - 6px);
}
.burger__meat--3 {
    transform: translateY(10px);
}
.nav {
    font-size: 16px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background-color);
    visibility: hidden;
    z-index: 1;
}
@media screen and (min-width: 800px) {
    .nav {
        display: block;
        visibility: visible;
        padding-top: 3em;
        width: 100px;
    }
}
.social-icons {
    justify-content: flex-start;
    padding-top: 1rem;
    display: flex;
    justify-content: center;
}
.social-icons__link {
    padding: 0.8rem;
}
.social-icons__link:not(:last-child) {
    margin-right: 1em;
}
.social-icons__link .social-icons__icon {
    filter: invert(86%) sepia(8%) saturate(197%) hue-rotate(182deg) brightness(95%) contrast(91%);
    width: 1.4rem;
    height: 1.4rem;
    background-size: contain;
    background-repeat: no-repeat;
}
.social-icons__link .social-icons__icon:hover {
    filter: invert(76%) sepia(38%) saturate(362%) hue-rotate(52deg) brightness(89%) contrast(90%);
}
main {
    padding: 0 1.5rem;
    height: 100%;
    width: 100%;
}
@media screen and (max-width: 799px) {
    .test {
        display: flex;
        justify-content: right;
        align-items: center;
        background: var(--background-color);
        width: 50%;
    }
}
.splash-container {
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
@media screen and (min-width: 800px) {
    .splash-container {
        font-size: 18px;
    }
}
.splash h1 {
    font-size: 3em;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0;
}
.splash h2 {
    font-size: 2.25em;
    font-weight: 500;
    line-height: 1.25;
    max-width: 22em;
    letter-spacing: -0.03em;
}
.fancy {
    color: var(--accent-color);
}
.handle {
    display: inline-block;
    margin-top: 0.275em;
    color: #9b9b9b;
    letter-spacing: 0.5px;
}
@media screen and (min-width: 800px) {
    html {
        font-size: 100%;
    }
}
@media screen and (min-width: 1400px) {
    html {
        font-size: 115%;
    }
}
@media screen and (min-width: 800px) {
    .burger__container {
        display: none;
    }
}
@media screen and (min-width: 800px) {
    .nav {
        display: block;
        visibility: visible;
        padding-top: 3em;
        width: 100px;
    }
}
.flex-wrapper {
    display: flex;
}
.post__container {
    flex-grow: 1;
    min-width: 0;
}
.post {
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
}
.post h2,
.post h3 {
    position: relative;
    padding-top: 10px;
}
.post h2 .anchor,
.post h3 .anchor {
    top: 0.5rem;
    text-decoration: none;
    position: absolute;
    left: -1rem;
    color: #9b9b9b;
    font-size: 1.2rem;
    font-weight: 400;
}
.post h2 .anchor:hover,
.post h3 .anchor:hover {
    color: #717171;
}
#post__title {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.post__footer {
    padding-top: 3rem;
}
footer {
    text-align: center;
    padding: 0 1.5rem;
    background: var(--background-color);
}
footer p {
    margin-top: 1rem;
    color: #9b9b9b;
    font-size: 0.65rem;
}
.post__content ul {
    list-style: none;
}
.post__content ul li {
    margin-bottom: 0.5rem;
}
.post__content ul li::before {
    content: "-";
    color: #717171;
    position: absolute;
    margin-left: -15px;
}
code {
    font: 85% sfmono-regular, Consolas, Menlo, monospace;
    padding: 0.2em 0.4em;
    margin: 0;
    background-color: rgba(27, 31, 35, 5%);
    border-radius: 3px;
}
.license:hover,
.license {
    text-decoration: none;
    color: #9b9b9b;
}
