

#content h2 {
    color: rgb(24, 24, 27);
}

#content p {
    color: rgb(82, 82, 91);
}

#content :where(ul>li):not(:where([id~=content] *))::marker {
    color: rgb(82, 82, 91) !important;
}

#content li {
    color: rgb(82, 82, 91);
}

#content :where(:is(h2,h3)+*):not(:where([id~=content] *)) {
    margin-top: 0 !important;
}

#content :where(ul,ol):not(:where([id~=content] *)) {
    padding-left: 1.5rem !important;
}

#content :where(ul):not(:where([id~=content] *)) {
    list-style-type: disc !important;
}

#content :where(#content>*):not(:where([id~=content] *)) {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

#content h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-top: 80px;
    margin-bottom: 16px;
}

#content p {
    line-height: 28px;
    margin-top: 28px;
}

#content a {
    color: rgb(45, 212, 191);
    cursor: pointer;
    font-weight: 600;
    line-height: 28px;
    text-decoration-color: rgba(45, 212, 191, 0.3);
    text-decoration-line: underline;
}

#content ul {
    line-height: 28px;
    margin-top: 40px;
    padding-left: 24px;
}

#content li {
    line-height: 28px;
    list-style-type: disc;
    margin-bottom: 24px;
    margin-top: 24px;
    padding-left: 14px;
}

@media (prefers-color-scheme: dark) {
    #content h2 {
        color: rgb(228, 228, 231)!important;
    }

    #content p {
        color: rgb(161, 161, 170) !important;
    }

    #content :where(ul>li):not(:where([id~=content] *))::marker {
        color: white !important;
    }

    #content ul {
        color: rgb(161, 161, 170);
    }

    #content li {
        color: rgb(161, 161, 170);
    }
}