body {
    color: #1b2733;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    line-height: 30px;
    letter-spacing: -0.25px;
    font-weight: 400;
    display: grid;
    grid-template-columns: 1fr 1fr:
}

h2 {
    font-weight: 500;
}

.post-header {
    margin-bottom: 20px;
}

/* from https://boosted.orange.com/docs/4.6/content/typography/ */

/* desktop */
@media (min-width: 768px) {

    /* TODO */
    .post-header h1 {
        line-height: 50px;
        font-size: 45px;
    }

    h1 {
        font-size: 34px;
        line-height: 34px;
        letter-spacing: -1px;
    }

    h2 {
        font-size: 30px;
        line-height: 32px;
        letter-spacing: -0.8px;

        /* margin-top: 32px; */
    }

    h3 {
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -0.5px;

        font-weight: 600;
    }

    h4 {
        font-size: 20px;
        line-height: 22px;
        letter-spacing: -0.4px;
    }

    p {
        margin: 0 0 14px;
        font-size: 18px;
    }

    body {
        margin: 0 0 14px;
        font-size: 18px;
    }

}

/* mobile */
@media (max-width: 768px) {
    .post-header h1 {
        line-height: 50px;
        margin-top: 0px;
        font-size: 40px;
    }

    h1 {
        font-size: 32px;
        /* line-height: 34px; */
        /* letter-spacing: -1px; */
    }

    h2 {
        font-size: 24px;
        /* line-height: 31px; */
        /* margin-top: 32px; */
    }

    h3 {
        font-size: 18px;
        font-weight: 700;
    }

    h4 {
        font-size: 16px;
        font-weight: 600;
    }

    p {
        margin: 0 0 12px;
        font-size: 16px;
    }

    body {
        margin: 0 0 12px;
        font-size: 16px;
    }
}

hr {
    border-top: 1px solid #ccc;
}

a {
    color: #428bca;
}

.nav-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.container {
    max-width: 745px;
}

.nav-inner-container {
    display: flex;
    justify-content: space-between;
}

.right {
    float: right;
    text-align: right;
}

.navbar {
    border-radius: 0;
}

.navbar-default {
    background-color: #fff;
    border-bottom: 1px solid #D3D3D3;

}

.navbar-default .navbar-brand {
    color: #1b2733;
}

.navbar-default .navbar-brand:hover {
    color: #000;
}

.navbar-default .navbar-nav li a,
.navbar-default .navbar-nav .open .dropdown-menu>li>a {
    color: #000;
}

.navbar-default .navbar-nav li a:hover {
    color: #000;
    background-color: #3d80ba;
}

.navbar-default .navbar-nav .active a {
    color: #000;
    background-color: #3d80ba;
}

.navbar-default .navbar-toggle:hover {
    background-color: #007af5;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.dropdown-menu {
    background-color: #428bca;
}

.dropdown-header {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding-left: 10px;
}

.dropdown-menu li a {
    color: #000;
}

.navbar-default .navbar-nav .open a:hover,
.navbar-default .navbar-nav .open a:focus,
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    background-color: #3d80ba;
    color: #000;
}

nav a {
    color: #333;
    text-decoration: underline;
}

#content {
    background-color: #fff;
    border-radius: 3px;
}

#content img {
    max-width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr:
}


footer {
    font-size: 14px;
    text-align: center;
    padding-top: 75px;
    padding-bottom: 30px;
}

blockquote footer {
    text-align: left;
    padding-top: 0px;
    padding-bottom: 0px;
}

blockquote {
    padding: 1rem 2rem;
    margin: 0 0 1rem;
    font-size: 18px;
    /* border-left: 5px solid #eee; */
}

#post-tags {
    margin-top: 30px;
}

#prev-next {
    padding: 15px 0;
}

img {
    box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 32px;
}

#post-meta {
    font-size: 18px;
    color: #1b2733;
    font-style: italic;
    line-height: 26px;
    font-weight: 400;

}

#page-header {
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
}

#page-header h2 {
    font-size: 21px;
}

pre {
    overflow-x: auto;
}

pre code {
    font-family: monospace;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    padding: 0.5em;
    overflow-wrap: normal;
    white-space: pre;
    2a6496
}

code {
    color: #1b2733;
}

pre,
code,
.hljs {
    background-color: #F1F4F7;
}

@media (min-width: 768px) {
    .navbar {
        min-height: 70px;
    }

    .dropdown-menu>li>a {
        padding: 3px 20px;
    }

    .navbar-nav>li>a {
        padding: 21px 20px;
    }

    .navbar-default .navbar-brand {
        font-size: 36px;
        padding: 25px 15px;
    }
}

@media (max-width: 767px) {
    .navbar-default .navbar-brand {
        font-size: 21px;
    }

    #content {
        padding: 4px;
    }

    #post-meta .right {
        float: left;
        text-align: left;
    }
}

table {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

td,
th {
    padding-left: 1rem;
    padding-right: 1rem;
    border-right: solid black;
}

tr {
    border: solid black;
}

/* footnotes */
.footnotes {
    margin-top: 3rem;
}

.footnotes>li {
    margin-bottom: 1rem;
}

/*
ol.footnotes {
    padding: 0;
    margin: 0;
}

ol.footnotes li {
    list-style-position: outside;
} */

ul,
ol {
    padding-left: 2rem;
}

.link-highlight {
    font-weight: 600;
}