/* Disable scrollbar */
@-moz-document url-prefix() {
    html{
        scrollbar-width: none;
    }
}

/* Disable scrollbar */
body::-webkit-scrollbar pre::-webkit-scrollbar {
    display: none;
}

/* Disable scrollbar */
html body pre {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow: auto;
}

/* TODO: Woff2 these fonts */
@font-face {
    font-family: iosevka;
    src: url('/s/fonts/iosevka.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: stack_sans_notch;
    src: url('/s/fonts/stack_sans_notch.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: inter;
    src: url('/s/fonts/inter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

main {
    flex: 1;
}

html, body {
    margin: 0;
}

body {
    font-size: 90%;
    font-family: iosevka;
    background-color: #17161A;
    color: #eeeefe;

    padding-left: 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.title {
    font-family: stack_sans_notch;
    text-align: center;
    background-color: #17161A;
    color: #eeeefe;
}

header {
    font-family: stack_sans_notch;
    text-align: center;
    color: #eeeefe;
}

.logo {
    font-family: inter;
    margin: 0;
    line-height: 0.8;
}

footer p {
    font-size: 80%;
    font-family: stack_sans_notch;
}

footer {
    text-align: center;
    color: #EBB894;
    padding: 0;
}

blockquote {
    font-family: sharetech;
    text-align: left;
    background-color: #17161A;
    color: #EBB894;
    border-left: 2px solid #EBB894;
    margin: 0.5em 10px;
    padding: 0em 15px;
}

blockquote p {
    display: inline;
}


/* links */
a {
    color: #EBB894;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* lists */
ul {
    list-style: none;
    padding: 0;
}

li::before {
    content: "- ";
    color: #eeeefe;
    margin-right: 0.5em;
}


/* code blocks */
pre {
    background: #17161A;
    color: #EBB894;

    border: 1px solid #EBB894;

    overflow-x: auto;
    padding: 0.5rem;
    padding-left: 1rem;

    margin-right: 1rem;
}

code {
    font-family: sharetech;
    font-size: 0.9em;
}
