:root {
    --asideWidth: 330px;
    --asideMargin: 20px;
}

body {
    min-height: 100svh;
    justify-content: space-between;
}

.wrapper:not(header .wrapper) {
    min-height: 80svh;
    display: flex;
    gap: 30px;
}

aside.docsIndex {
    margin-left: 50px;
    top: var(--headerHeight);
    padding: 20px;
    color: white;
    box-sizing: border-box;
    border: solid red 2px;
    border-radius: 15px;
    font-size: 20px;
    overflow-y: auto;
    position: sticky;
    min-width: var(--asideWidth);
    max-width: var(--asideWidth);
    align-items: start;
    max-height: 75svh;
}

aside.docsIndex ol {
    padding-inline-start: 5px;
    list-style-type: none;
}

aside.docsIndex ol ol {
    padding-inline-start: 35px;
}

aside.docsIndex .selectedSection {
    color: red;
}

aside.docsIndex span {
    font-weight: bold;
    font-size: 22px;
}

aside.docsIndex img,
aside.docsIndex svg {
    width: 27px;
    height: 27px;
}

aside.docsIndex li.parent {
    margin-top: 5px;
}

aside.docsIndex a {
    color: white;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

main {
    margin-top: var(--headerHeight);
    min-height: 75svh;
    position: relative;
}

main article p:first-of-type {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

main strong {
    margin-right: 10px;
    padding: 5px;
    border-radius: 5px;
}

main .post {
    background-color: red;
}

main .get {
    background-color: green;
}

main .put {
    background-color: #008f94;
}

main .delete {
    background-color: purple;
}

main .patch {
    background-color: rgb(255, 123, 0);
}

main pre.style2 {
    background-color: black;
}

main pre.style2 span {
    color: #f74834;
}

main pre.style3 {
    background-color: transparent;
    text-wrap: auto;
    overflow-x: auto;
}

main pre.style3 span {
    color: orange;
}

main article {
    border: solid gray 2px;
    border-radius: 10px;
    margin: 20px 0;
    box-sizing: border-box;
    padding: 20px 50px;
}

main article h3 {
    margin-top: 0;
    font-size: 25px;
}

main article h4 {
    font-size: 20px;
}

h5 {
    text-decoration: underline;
    margin-bottom: 0;
    font-size: 18px;
}

main {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 5%;
}

main h2,
main h3,
main h4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

main h2 img,
main h3 img,
main h4 img {
    margin: 0 !important;
    height: 45px;
    width: unset !important;
}

main h4 {
    font-size: 21px;
    margin-bottom: 0;
}

main button {
    background-color: #f74834;
    width: fit-content;
    margin: 30px auto;
}

main .hide {
    display: none;
}

main .images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 30px;
}

main .images img {
    max-height: 350px;
    border-radius: 5px;
    border: solid currentColor 2px;
}

main h3 {
    margin-bottom: 5px;
    font-size: 24px;
}

main hr {
    margin: 0;
}

main pre {
    border-radius: 10px;
    background-color: rgb(82, 81, 81);
    color: white;
}

main pre code {
    box-sizing: border-box;
    padding: 20px;
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

main .gettingStarted3 section {
    display: flex;
    flex-direction: column;
}

main .gettingStarted3 section div.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

main .gettingStarted3 section img {
    margin-top: 20px;
    border: solid white 2px;
    border-radius: 10px;
}

main .gettingStarted3 section .TM3,
main .gettingStarted3 section .TM4 {
    margin: auto;
    margin-top: 15px;
    width: 700px;
}

main .uninstall .linuxAdvice {
    padding: 20px;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: rgb(61, 61, 61);
}

main .WIG ol {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

main .WIG div:nth-of-type(1) li,
main .WIG div:nth-of-type(2) li {
    margin-top: 20px;
}

main .WIG li {
    margin-top: 60px;
}

main .WIG img {
    margin: auto;
    margin-top: 20px;
    height: 450px;
}

main .I-G-Windows ol {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

main .smartScreenImg {
    max-width: 50%;
}

main .setPrivateNetworkImg {
    max-height: 370px;
}

main .accessFromBrowser {
    display: flex;
    flex-direction: column;
}

main .accessFromBrowser img {
    width: 900px;
    margin: 20px auto;
}

main .navButtons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 100px auto 70px;
}

main .navButtons a {
    color: white;
    min-width: 100px;
    padding: 15px;
    border-radius: 10px;
    background-color: transparent;
    border: solid gray 1px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

main .navButtons a span:nth-child(1) {
    font-size: 16px;
}

main .navButtons a span:nth-child(2) {
    margin-top: 10px;
    font-size: 19px;
    color: #f74834;
}

main section {
    display: flex;
    flex-direction: column;
}

main section img {
    margin: auto;
    max-width: 100%;
}

main section.fileSystem img {
    margin: 0;
    height: 35px;
}

main section.fileSystem ul {
    padding-left: 1.5em;
    list-style: none;
}

main section.fileSystem li {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
    padding-left: 1em;
}

main section.fileSystem li:not(:nth-child(1)) {
    margin-top: 10px;
}

main section.fileSystem li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: currentColor;
    font-size: 1.2em;
    line-height: 1;
}

.linuxAdvice {
    padding: 20px;
    font-size: 16px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: rgba(128, 128, 128, 0.486);
}

main.fileSystem ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

main.fileSystem li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

main.fileSystem li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: currentColor;
    left: 0;
}

main.fileSystem img {
    height: 40px;
    margin: unset;
}

.navButtons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 100px auto 70px;
}

.navButtons a {
    color: white;
    min-width: 100px;
    padding: 15px;
    border-radius: 10px;
    background-color: transparent;
    border: solid gray 1px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.navButtons a span:nth-child(1) {
    font-size: 16px;
}

.navButtons a span:nth-child(2) {
    margin-top: 10px;
    font-size: 19px;
    color: #f74834;
}

main {
    box-sizing: border-box;
    position: relative;
    font-size: 18px;
    overflow: hidden;
}

main h2 {
    gap: 10px;
    display: flex;
    align-items: center;
}

main.secwarns .smartScreenImg {
    margin-top: 15px;
    margin: auto;
    width: 400px;
}
