body {
    font-family: "Open Sans", Avenir, "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    background-color: #ebeced;
    margin: 0;
    padding: 0;
}

.div-header-top {
    display: flex;
    flex-direction: row;
    padding-left: 40px;
    width: 100%;
    height: 50px;
    background-color: #444444;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.article {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: dimgrey;
    margin-left: 40px;
}


h1 {
    color: #444444;
    text-align: left;
    margin-left: 40px;
    font-size: 40px;
}

h2, h3 {
    font-size: 20px;
    font-weight: 900;
}

h2 {
    text-align: left;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: block;
    flex: 1 1 100%;
    height: 100%;
    overflow: hidden auto;
    color: #444444;
}

h3 {
    text-align: left;
}

hr {
    font-weight: lighter;
    text-align: left;
    font-size: 28px;
    display: block;
}

.article li {
    list-style: none;
    text-align: left;
    color: #444444;
    margin-block-start: 24px;
    margin-inline-start: 0;
    margin-inline-end: 0;

    font-size: 20px;


}

.nav {
    display: block;
    unicode-bidi: isolate;
    text-align: left;
    font-size: 28px;

}

.nav-scroll {
    display: flex;
    scrollbar-width: thin;
    scrollbar-base-color: black;
    text-align: left;
    font-size: 28px;

}

.sections {
    display: flex;
    font-size: 28px;

}

.section-navbar {
    width: 330px;
    height: 100%;
    overflow: hidden;
    color: white;
    background-color: #323334;
    background-blend-mode: multiply;
    display: flex;
    position: relative;
    flex-flow: column;
    word-break: break-word;
    font-size: 28px;


}

.section-main-text {
    display: block;
    font-size: 28px;

}

.GET {
    color: #47AFE8;
    font-weight: lighter;
    font-size: 16px;
    display: block;
    text-align: left;

}

.POST {
    color: #690;
    font-weight: lighter;
    font-size: 16px;
    display: block;
    text-align: left;

}

.PUT {
    color: #FF9900;
    font-weight: lighter;
    font-size: 16px;
    display: block;
    text-align: left;

}

.DELETE {
    color: #F06560;
    font-weight: lighter;
    font-size: 16px;
    display: block;
    text-align: left;

}

del {
    font-size: 16px;
}

span {
    font-size: 16px;

}

li h3 {
    font-size: 16px;
    font-weight: bolder;

}

p {
    font-size: 16px;
}

#togC {
    display: none;
}

#togL, #content {
    display: block;
    width: 100%;
    padding: 10px;

}

#togL {
    background: #00ffb0;
}

#content {
    background-color: #ebeced;;
}

#content {
    display: none;

}

#togC:checked + #content {
    display: block;

}

li {
    list-style: none;
}

.container {
    display: inline-block;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

