body {
    padding: 0;
    margin: 0;
    background: #060818;
    color: #d1d5db;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* scrollbar */
/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(96 125 139);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(96 125 139);
}

/* scrollbar */

a {
    color: #607d8b;
    text-decoration: none;
    border-bottom: solid 1px #607d8b;
    font-weight: bold;
}


svg {
    max-width: 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    background: #1e293b;
    padding: 10px;
    overflow: hidden;
}

nav img {
    height: 50px;
}

nav .menu-section ul li {
    list-style-type: none;
}

nav .menu-section .menu-icon {
    display: none;
}

.active-sidelink {
    background-color: #607d8b;
    padding: 5px;
    border-radius: 5px;
    margin: 5px 0px;

}

.sidelink {
    cursor: pointer;
    margin: 5px 0px;
}

.column-list li {
    display: flex;
    justify-content: space-between;
    max-width: 480px;

}

.step {
    font-weight: bold;
    text-transform: uppercase;
    color: #607d8b;
    border-bottom: 2px solid;
    margin-right: 3px;
}

.content-block img {
    cursor: pointer;
}

main {
    display: flex;
    justify-content: space-between;
}

.sidebar {
    width: 20%;
    background: #060818;
    height: 100vh;
    position: fixed;
    overflow-y: scroll;

}

.top-0 {
    top: 0;
}


.sidebar-inner {
    /* position: fixed; */
}

.sidebar li {
    list-style-position: inside;
}


.content {
    width: 80%;
    padding: 30px;
    margin-left: 20%;

}

footer {
    background-color: #1e293b;
    padding: 10px;
    display: flex;
    justify-content: center;
    max-height: 100px;
    overflow: hidden;

}

.content-inner {
    background-color: #0e1726;
    padding: 20px;
    border-radius: 10px;
}

.content-block {
    background-color: #1e293b;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;

}

.menu-section ul {
    display: flex;
    justify-content: flex-end;

}

.menu-section ul li {
    margin-left: 5px;
}

#back-top-top {
    display: none;
}

pre {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    
}

code {
    background-color: green;
}


@media only screen and (min-width: 600px) {
    .md-hidden {
        display: none;
    }

}

@media only screen and (max-width: 600px) {
    .menu-section ul {
        display: block;
    }

    nav .menu-section ul li {
        margin-bottom: 10px;
    }

    .sm-hidden {
        display: none;
    }

    nav .menu-section .menu-icon {
        display: block;
    }

    .menu-section ul li {
        margin-left: 0px;
    }

    .content {
        width: 100%;
        margin-left: 0;
        padding: 0px;
        

    }

    .content-inner {
        border-radius: 0px;
    }

    span#back-to-top {
        bottom: 0;
        right: 0;
        position: fixed;
        margin-bottom: 100px;
        border: solid 1px;
        background: #0e1726;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        padding: 5px;
        z-index: 10000;
    }

    .content-block img {
        width: 100%;
    }

    .sidebar {
        display: none;
    }

    

    .menu-item {
        position: fixed;
        top: 0;
        right: 0;
        padding-top: 5px;
        padding-right: 5px;
        border-radius: 5px;
        width: 70vw;
        height: 100vh;
        z-index: 100;
        background-color: #1e293b;
        box-shadow: -7px 3px 3px -3px rgb(100 130 181 / 74%);
        -webkit-box-shadow: -7px 3px 3px -3px rgb(100 130 181 / 74%);
        -moz-box-shadow: -7px 3px 3px -3px rgb(100 130 181 / 74%);
    }
}