/* top level */
html {
    --c-page-bg: #090509 !important;
    --c-page-fg: #d8d3dd !important;
    --c-link-fg: #b49fff !important;
    --c-page-fg-alt: #9f9994 !important;
    --c-alt-bg: #2b282b !important;
}

main table td:first-child {
    padding-right: 10px;
}

table {
    margin-bottom: .25rem !important;
}

table .notice {
    color: #f38ba8;
}


/* header and navigation */
.header h1,h2,h3,h4 {
    margin-top: 5px;
    margin-bottom: 5px;
}

section h2::before,article h3::before {
    content: "" !important;
}

nav a {
    margin-right: 30px;
}

nav a:last-of-type {
    margin-right: 0px;
}

nav a::before {
    content: "[";
}

nav a::after {
    content: "]";
}


/* page content section */
section h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

section p {
    margin-bottom: .25rem;    
    max-width: 80ch;
}

section#posts article {
    border-top: 1px solid var(--c-alt-bg);
}

section#posts article:last-child {
    border-bottom: 1px solid var(--c-alt-bg);
}

section#posts article h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 3px;
}

section#posts article time {
    color: var(--c-page-fg-alt);
}

section#posts article p {
    margin-left: 1rem;
}

section#rings td.ringlinks a::before {
    content: "[";
}

section#rings td.ringlinks a::after {
    content: "]";
}

section:target {
    background-color: var(--c-page-bg);
    animation: background-fade 5s normal;
}

@keyframes background-fade {
    from { background-color: color-mix(in lab, var(--c-alt-bg), var(--c-page-bg)); }
    30% { background-color: color-mix(in lab, var(--c-alt-bg), var(--c-page-bg)); }
    to { background-color: var(--c-page-bg); }
}
