h1 {
    font-size: 32px;
}

section.side-navigation {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    background-color: #f7f7f7;
    font-weight: 600;
}

section.side-navigation ul {
    padding: 0 1em;
    list-style-type: none;
}

section.side-navigation a {
    text-decoration: none;
    color: #7e7e7e;
}

section.side-navigation a:hover {
    color: #000;
}

.main-content {
    align-items: center;
    padding-left: 260px;
    padding-bottom: 50px;
    box-sizing: border-box;
}

.main-content section.content {
    padding: 0 2em;
    box-sizing: border-box;
    scroll-margin-top: 100px;
    max-width: 900px;
}

.main-content section.content > div {
    min-width: 0;
}

pre code.hljs {
    padding: 1em 2em!important;
    border-radius: 0.5em;
    box-shadow: #00000080 0 0 10px -5px;
}

code.inline-highlight {
    font-weight: bold;
    color: #06BD23;
    background: #f3f3f3;
    padding: 2px 5px;
    border-radius: 5px;
}

code, table {
    scrollbar-width: none;
}

table {
    background: #FFF;
    border-radius: 0.5em;
    display: flex;
    overflow-x: auto;
    width: 100%;
    margin: 2em 0em;
    
}

tbody {
    min-width: 600px;
}

td, th {
    text-align: left;
    padding: 8px;
    min-width: 80px;
}

td {
    font-weight: 400;
}

tr:nth-child(even) {
    background-color: #f7f7f7;
}

footer {
    display: none;
}

@media screen and (max-width: 968px) {
    section.side-navigation {
        display: none;
    }

    .main-content {
        padding-left: 0px;
    }

    footer {
        padding-left: 0px;
    }
}
