@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Poppins:wght@500&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.container {
    display: flex;
}

.text-center {
    text-align: center;
}

.nav-header {
    margin: 20px;
    font-size: 30px;
}

#navbar {
    /* border: 2px solid red; */
    height: 100vh;
    border-right: 3px solid;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
}

.header-link {
    text-decoration: none;
    color: #343434;
}

header {
    color: #343434;
    font-family: 'Poppins', sans-serif;
}

.nav-ul {
    height: 89%;
    margin-top: 20px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.navbar-list-items {
    width: 100%;
    width: 25vw;
    display: block;
    border-top: 1px solid;

}

.nav-link {
    list-style-type: none;
    text-decoration: none;
    color: #343434;
    font-size: 18px;
    display: block;
    padding: 10px 30px;
    margin: 5px;
    cursor: pointer;
}

section li {
    margin: 30px 0 0 70px;
}

#main-doc {
    padding: 20px;
}

article {
    padding: 15px 25px;
    color: #343434;
    font-family: 'Lato', sans-serif ;
    font-weight: 600;
}

p {
    margin-top: 20px;
}

code {
    background-color: #f7f7f7;
    display: block;
    padding: 15px;
    margin: 10px;
    line-height: 2;
    /* border: 1px solid; */
    white-space: pre-line;
    word-break: normal;
    word-wrap: normal;
    /* background: aquamarine; */
    text-align: left;
    min-height: 75px;
    font-family: monospace;
    opacity: .9;
    font-weight: 200;
}

.text-left {
    text-align: left;
}
