body {
    background: url('/assets/misc/background.webp');
    background-position: center center;
}

.documentationScreen {
    width: 100%;
    height: auto;
    min-height: 100svh;
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.documentationArea {
    width: 100%;
    max-width: 640px;
    height: 100%;
}

.documentaionContent {
    width: 100%;
    height: 100%;
    padding: 30px 0 70px 0;
}

.goBack {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: var(--primClr1);
    padding-left: 5px;
}

.goBack>svg {
    width: 15px;
    height: 15px;
    stroke-width: 2;
    display: flex;
}

.pageTitle {
    font-family: var(--font1);
    font-size: 32px;
    text-transform: capitalize;
    line-height: 0.8;
    letter-spacing: 1px;
    margin: 11px 0 24px 0;
    padding-left: 9px;
}

.documentationPage {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border-radius: var(--borderRadius1);
    border: 1px solid var(--borderBlk);
    box-shadow: var(--shadow1);
    padding: 30px;
}

.documentationPage>h2 {
    font-family: var(--font1);
    font-size: 19px;
    text-transform: capitalize;
    line-height: 0.8;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.documentationPage>h3 {
    font-family: var(--font1);
    font-size: 15px;
    text-transform: capitalize;
    line-height: 0.8;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.documentationPage>p {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.9);
}

.documentationPage>ul {
    font-family: var(--font1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    list-style: inside;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: rgba(0, 0, 0, 0.9);
}

.docSocialLinks {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    position: relative;
    z-index: 10;
}

.docSocialLinks>a {
    width: fit-content;
    height: fit-content;
    text-decoration: none;
    color: black;
    opacity: 0.65;
}

.docSocialLinks>a>svg {
    width: 27px;
    height: 27px;
    stroke-width: 0;
}

@media only screen and (max-width: 576px) {
    .documentationScreen {
        padding: 0px 8px;
    }

    .pageTitle {
        font-size: 29px;
    }

    .documentationPage>h2 {
        font-size: 17px;
    }

    .documentationPage>h3 {
        font-size: 14px;
    }

    .documentationPage>p {
        font-size: 13px;
    }

    .documentationPage>ul {
        font-size: 13px;
    }

    .docSocialLinks>a>svg {
        width: 23px;
        height: 23px;
    }
}