/* Documentation: Reset CSS */
*,
::after,
::before {
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    font: inherit;
    color: inherit;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    background: transparent;
    text-transform: inherit;
    vertical-align: baseline;
}
a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}
button {
    line-height: 1;
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    margin-bottom: 4px;
}
p,
ul,
ol,
li {
    color: var(--color-secondary);
}
strong {
    font-weight: 500;
}

/* Documentation: Main CSS */
:root {
    --color-text: #1f1f1f;
    --color-border: #e2e2e2;
    --color-primary: #2222fa;
    --color-secondary: #4f4f4f;
    --color-background: #fefefe;
}
body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-background);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
header {
    gap: 24px;
    display: flex;
    max-width: 640px;
    margin-inline: auto;
    padding: 64px 24px 24px 24px;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}
header img {
    width: 72px;
    height: 72px;
    border-radius: 9999px;
}
header div h1 img {
    width: 18px;
    height: 18px;
    margin-top: -2px;
    margin-left: 4px;
    vertical-align: middle;
    display: inline-block;
}
header div p {
    margin-bottom: 4px;
}
header div a {
    font-weight: 500;
    color: var(--color-primary);
}
main {
    max-width: 640px;
    padding: 24px 24px;
    margin-inline: auto;
    border-bottom: 1px solid var(--color-border);
}
main section:not(:last-child) {
    margin-bottom: 24px;
}
main section a {
    color: var(--color-primary);
}
main section p {
    text-align: justify;
}
main section p:not(:last-child) {
    margin-bottom: 12px;
}
footer {
    max-width: 640px;
    margin-inline: auto;
    padding: 24px 24px 64px 24px;
}
footer p {
    color: #afafaf;
    font-size: 12px;
}

/* Documentation: Media CSS */
@media (max-width: 768px) {
    header {
        padding-top: 24px;
    }
}
@media (prefers-color-scheme: dark) {
    :root {
        --color-text: #fefefe;
        --color-primary: #4a4aff;
        --color-secondary: #bfbfbf;
        --color-background: #0f0f0f;
    }
}
