@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Inter&display=swap');

@import url('https://fonts.googleapis.com/css?family=DM Sans');

@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');


:root {
        --width: 900px;
        --title-font: 'Special Elite', cursive;
        --text-font: 'Special Elite';
        --font-scale: 1em;
        --background-color: #121212;
        --text-color: #E5CCAE;
        --bold-color: #EC7267;

        --code-background-color: #1f1b1b;
        --code-color: #cdcdcd;
        --blockquote-color: #cdcdcd;
    }

html {
        align-items: center;
        background: transparent;
     }

body {
    margin: auto;
    align-self: center;
    font-family: var(--text-font);
    font-size: var(--font-scale);
    padding: 15px;
    max-width: var(--width);
    text-align: left;
    background: var(--background-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
    padding: 0 0.3rem;
}
header, footer, .upvote-button {display:none !important}
a {
    color: inherit !important;
    text-decoration: underline;
}

b, strong {
    color: var(--bold-color);
}

i, em {color: #4EB1D0 !important; }
