@import url(colors.css);
@import url(buttons.css);
@import url(navbar.css);
@import url(footer.css);
@import url(tables.css);
@import url(pagestruct.css);


html {
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
}

body {
    background-color: var(--background);
    color: var(--on-background);
    margin: 0;
}

main {
    max-width: 80ch;
    margin: 0 auto;
    width: 100%;
}

p, td, li {
    color: var(--white);
}

li.dir {
    color: var(--on-background);
}

h1 {
    color: var(--white);
    text-align: center;
}

h3 {
    padding-top: 2rem;
}

code {
    font-size: 1em;
    background-color: var(--black);
    color: var(--orange);
    display: inline-block;
    padding: 0.3rem 0.5rem;
    border-radius: 0.5rem;
}

pre {
    margin: 0.5rem;
}

blockquote {
    background-color: var(--surface);
    margin: 0;
    padding: 0.75rem;
    border-radius: 0.75rem;
}

strong {
    color: var(--strong);
}

.link {
    color: var(--white);
    text-decoration: none;
}

.link:hover {
    color: var(--blue);
    text-decoration: underline;
}

a.no-underline {
    text-decoration: none;
}

a {
    color: var(--orange);
}

a:hover {
    color: var(--white);  
}

a.toc {
    color: var(--orange);
}

a.toc:hover {
    text-decoration: underline;
    color: var(--white);
}
