:root {
    --title-font: "Roboto Mono", monospace;
    --body-font: "Anek Devanagari", sans-serif;
    --code-font: "Anek Devanagari", monospace;
    --accent-font: "Major Mono Display", monospace;
}
body {
    font-size: 1.2rem;
    line-height: 1.3;
    color: #c2d3cf;
    background: #242424;
    font-family: var(--body-font);
    font-weight: 300;
    height: 100%;
}

html {
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #7ba59a;
    font-family: var(--title-font);
    /* padding-top: 1rem; */
}

a {
    color: #54c5a8;
    text-decoration: none;
    transition: color 0.1s linear;
    
}

a:hover {
    color: #97b9be;
}

pre {
    background-color: #343434;
    margin: 1rem 0;
    padding: 0 1rem;
    border-radius: 3px;
}

blockquote {
    border-left: 3px solid #646464;
    margin: 0;
    padding: 0;
    padding-left: 2rem;
    font-family: var(--accent-font);
    text-align: left;
    font-size: 1rem;
}

kbd, var, code {
    background: #343434;
    border-radius: 3px;
    font-weight: 200;
    color: #dddddd;
}

mark {
    background-color: #133b31;
    color: #ffffff;
}

var {
    font-style: normal;
}

ul {
    list-style: none;
    padding-left: 1em;
}
ul li {
    padding-left: 1em;
}
ul li::before {
    content: "\f105  ";
    font-family: "FontAwesome";
    margin-left: -1em;
    font-size: 1rem;
}

table {
    display: inline-block;
    border-collapse: collapse;
    background: #181818;
    margin: auto;
}

td, th {
    line-height: 1;
    padding: 0.2rem 0.5rem;
    border-style: solid;
    border-color: #343434;
    border-width: 1px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    body {
        font-size: 1rem;
    }
}
