body, h1, h2, h3, p, ul, li, div, table, td, th, img {
    margin: 0;
    padding: 0;
    border: 0;
}

:root {
    --bg:           #f0f0ee;
    --bg-nav:       rgba(240, 240, 238, 0.88);
    --border:       #bbbbb9;
    --text:         #111110;
    --text-muted:   #888885;
    --text-sub:     #666662;
    --card-bg:      #f0f0ee;
    --card-icon-bg: #e4e4e0;
    --link:         #0066cc;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg:           #111110;
        --bg-nav:       rgba(17, 17, 16, 0.88);
        --border:       #222220;
        --text:         #f0f0ee;
        --text-muted:   #666662;
        --text-sub:     #71716d;
        --card-bg:      #111110;
        --card-icon-bg: #1c1c1b;
        --link:         #4a8af4;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
    background-color: #f0f0ee;
    background-color: var(--bg);
    color: #111110;
    color: var(--text);
}

.clear {
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

nav {
    padding: 16px 10px;
    border-bottom: 1px solid #bbbbb9;
    border-bottom: 1px solid var(--border);
    background-color: rgba(240, 240, 238, 0.88);
    background-color: var(--bg-nav);
    overflow: hidden;
    zoom: 1;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
    nav {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }
}

nav img {
    height: 24px;
    width: 24px;
    float: left;
    display: block;
}

.nav-links {
    float: right;
    white-space: nowrap;
}

.nav-links a {
    display: inline;
    zoom: 1;
    margin-left: 12px;
    color: #888885;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: color 0.15s ease;
    -moz-transition: color 0.15s ease;
    -o-transition: color 0.15s ease;
    transition: color 0.15s ease;
}

.nav-links a:hover {
    color: #111110;
    color: var(--text);
}

.nav-links a.pill {
    background-color: #e4000f;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 13px;
    border: 1px solid #e4000f;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    white-space: nowrap;
}

.hero {
    text-align: center;
    padding: 80px 32px 72px;
}

.hero img.logo {
    width: 140px;
    height: 140px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    border-radius: 70px;
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    -moz-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

h1.hero-title {
    font-size: 54px;
    font-weight: bold;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #111110;
    color: var(--text);
    margin-bottom: 8px;
}

p.hero-subtitle {
    font-size: 19px;
    font-weight: normal;
    color: #888885;
    color: var(--text-muted);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-top: 2px;
    margin-bottom: 8px;
}

p.hero-subtitle em {
    font-style: normal;
    color: #0063e4;
}

p.hero-desc {
    color: #888885;
    color: var(--text-muted);
    font-size: 15px;
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    margin-top: 4px;
    margin-bottom: 20px;
}

p.hero-desc em {
    font-style: normal;
    color: #0063e4;
}

.hero-buttons {
    margin-left: auto;
    margin-right: auto;
}

a.btn {
    display: inline-block;
    display: inline;
    zoom: 1;
    margin: 5px;
    padding: 10px 22px;
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid #1a4db3;
    background-color: #1a4db3;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    -webkit-transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
    -moz-transition: opacity 0.15s ease, -moz-transform 0.15s ease;
    -o-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

a.btn:hover {
    color: #ffffff;
    filter: alpha(opacity=82);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=82)";
    opacity: 0.82;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

a.btn-red {
    background-color: #e4000f;
    border-color: #e4000f;
}

a.btn-blue {
    background-color: #1a4db3;
    border-color: #1a4db3;
}

hr.divider {
    display: block;
    height: 0;
    border: 0;
    border-top: 1px solid #bbbbb9;
    border-top: 1px solid var(--border);
}

.section {
    max-width: 1200px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 32px;
}

.smaller-section {
    max-width: 980px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 16px;
    font-size: 14px;
}

.about-text {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 90%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 48px;
}

* html .smaller-section {
    width: 90%;
}

* html .section {
    width: 90%;
}

p.section-label {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888885;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.credits-grid-wrap {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #bbbbb9;
    border: 1px solid var(--border);
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

table.credits-grid {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

table.credits-grid td.credit-card {
    width: 25%;
    background-color: #f0f0ee;
    background-color: var(--card-bg);
    padding: 20px 24px;
    vertical-align: top;
    border-right: 1px solid #bbbbb9;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid #bbbbb9;
    border-bottom: 1px solid var(--border);
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

table.credits-grid tr:last-child td.credit-card {
    border-bottom: none;
}

table.credits-grid td.credit-card:last-child {
    border-right: none;
}

img.credit-avatar {
    width: 36px;
    height: 36px;
    float: left;
    margin-right: 14px;
    display: block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.credit-info {
    overflow: hidden;
}

span.credit-name {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #111110;
    color: var(--text);
}

span.credit-desc {
    display: block;
    font-size: 13px;
    color: #888885;
    color: var(--text-muted);
    line-height: 1.45;
    margin-top: 4px;
}

span.credit-role {
    display: block;
    font-size: 14px;
    color: #666662;
    color: var(--text-sub);
    line-height: 1.45;
    margin-top: 4px;
    font-weight: bold;
}

a.credit-link {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #0066cc;
    color: var(--link);
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a.credit-link:hover {
    text-decoration: underline;
}

footer {
    border-top: 1px solid #bbbbb9;
    border-top: 1px solid var(--border);
    padding: 20px 32px;
    overflow: hidden;
    zoom: 1;
}

footer p {
    float: left;
    font-size: 12px;
    color: #888885;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    float: right;
}

.footer-links a {
    display: inline;
    zoom: 1;
    margin-left: 16px;
    color: #888885;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    -webkit-transition: color 0.15s ease;
    -moz-transition: color 0.15s ease;
    -o-transition: color 0.15s ease;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #111110;
    color: var(--text);
}

.queer-flag {
    width: 100%;
    height: 3px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    display: block;
}

.queer-flag div {
    float: left;
    width: 9.09%;
    height: 5px;
}

.queer-flag .red    { background-color: #E50000; }
.queer-flag .orange { background-color: #FF8D00; }
.queer-flag .yellow { background-color: #FFEE00; }
.queer-flag .green  { background-color: #028121; }
.queer-flag .blue   { background-color: #004CFF; }
.queer-flag .purple { background-color: #750787; }
.queer-flag .cyan   { background-color: #00C0C0; }
.queer-flag .white  { background-color: #FFFFFF; }
.queer-flag .rose   { background-color: #FFAFC8; }
.queer-flag .black  { background-color: #000000; }
.queer-flag .brown  { background-color: #784F17; }

@media screen and (max-width: 980px) {
    footer p,
    .footer-links {
        float: none;
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 12px;
    }

    table.credits-grid,
    table.credits-grid tbody,
    table.credits-grid tr,
    table.credits-grid td.credit-card {
        display: block;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    table.credits-grid td.credit-card {
        border-right: none;
        border-bottom: 1px solid #bbbbb9;
        border-bottom: 1px solid var(--border);
    }

    table.credits-grid tr:last-child td.credit-card:last-child {
        border-bottom: none;
    }

    table.credits-grid tr:last-child td.credit-card {
        border-bottom: 1px solid #bbbbb9;
        border-bottom: 1px solid var(--border);
    }

    table.credits-grid tr:last-child td.credit-card:last-child {
        border-bottom: none;
    }
}

body {
    visibility: visible !important;
}