html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    background-color: ghostwhite;
    line-height: 1.5;
}

.doc-logo {
    width: 100px;
    height: auto;
    /* margin-left: 333px; */
    padding: 20px 20px 0 20px;
}


#navbar {
    position: fixed;
    min-width: 290px;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    border-right: 4px solid black;

}

#navbar ul {
    height: 88%;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}
#navbar li {
    border-top: 1px solid black;
    width: 100%;
    position: relative;
    height: 50px;
    list-style: none;
}

#navbar a {
    text-decoration: none;
    display: block;
    padding: 14px 30px;
    color: rgb(70, 65, 65);
}

#navbar a:hover {
    background-color: rgb(70, 65, 65);
    color: ghostwhite;
    height: 45%;
}

.nav-header {
    width: 100%;
    padding: 10px 25px;
    font-size: 30px;
    display: block;
    
}

#main-doc {
    margin-left: 330px;
    margin-right: 20px;
}

header {
    font-size: 30px;
    margin-left: 20px;
    margin-top: 20px;
}

#main-doc p {
    margin-left: 22px;
}

#main-doc {
    padding-bottom: 9px;
}

.code-block {
    background-color: rgb(220, 212, 212);
    color:rgb(70, 65, 65);
    padding: 10px 30px;
    margin-left: 30px;
    font-family:'Courier New', Courier, monospace;
    margin-right: 10px;
    overflow: auto;
}

#Data_types ul {
    margin-left: 40px;
}
#Data_types ul ul {
    margin-left: -10px;
}

ul {
    line-height: 1.7;
}

@media screen and (max-width: 600px) {
    #navbar {
        width: 100%;
        height: 180px;
        top: 0;
        left: 0;
        position: fixed;
        padding-bottom: 30px;
        z-index: 99999999;
    }
    #main-doc {
        position: relative;
        bottom: 0;
        overflow-y: auto;
        overflow-x: auto;
        margin: 250px auto auto auto;
        width: 100%;
        max-height: 380px;
        min-height: 370px;
    }
}