<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global styles */

* {
    box-sizing: border-box; border: 0; padding: 0; margin: 0;
    font-family: Roboto, "Public Sans Web", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 12.5pt;
}
::-webkit-scrollbar, *::-webkit-scrollbar {
    width: 5pt !important;
    background: #333;
}
::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
    width: 5pt !important;
    background: #777;
}
::-webkit-scrollbar-thumb:hover, *::-webkit-scrollbar-thumb:hover {
    width: 15pt !important;
    background: #777;
}
.unselectable {
    user-select: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}
.hidden {
    display: none;
}
.hyphenated {
    hyphens: auto;
}


/* General styling */

body {
    overflow-x: hidden;
    background: #000;
}

.background-333 {
    background: #333;
    transition: all .15s linear;
}


/* Page outline */

#page {
    position: absolute;
    top: 0;
    left: 0;
}

#unrecoverable-error {
    display: none;
    padding: 8pt;
    font-weight: bold;
    text-align: center;
}


/* Content */

#substance {
    background: #FFF;
}
.content {
    margin: 0 auto;
}
.two-column {
    columns: 10cm 2;
}
.stats-wrapper {
    position: relative;
}
.stats-left {
    position: absolute;
    right: 0pt;
    top: 16pt;
    background: #BBBBBB88;
    padding: 8pt 16pt 12pt 16pt
}
.stats-right {
    position: absolute;
    left: 0pt;
    top: 16pt;
    background: #BBBBBB88;
    padding: 8pt 16pt 12pt 16pt
}
.stat {
    font-family: "DM Mono", monospace;
    font-size: 32pt;
    color: #58bbff;
    display: block;
}


/* App cards */

.content.app-cards {
    text-align: center;
}
.app-card {
    display: inline-block;
    width: 460px;
    margin: 10px 10px 10px 0;
    padding: 15px !important;
    text-align: left;
    overflow-x: clip;
    border: 1px solid #BBB;
    box-shadow: 0 0 8pt 4pt #EEE;
    transition: all .1s ease-out;
}
.app-card:hover {
    box-shadow: 0 0 8pt 4pt #CCC;
}
.app-card img {
    cursor: pointer;
    width: 430px;
    height: 230px;
}
.app-card a {
    white-space: nowrap;
}
.app-card h4 {
    font-size: 18pt;
    margin: 5pt 0;
    font-weight: 500;
    letter-spacing: -.15pt;
}
.app-card a svg {
    position: relative;
    top: .65pt;
}
.app-card .app-description-short {
    margin-bottom: 10px;
    min-height: 4.5em;
}
.app-card span.category {
    font-size: 12pt;
    background: #DDD;
    color: #555;
    padding: 1pt 5pt;
    border-radius: 3pt;
    cursor: default;
}
.app-card.inactive {
    opacity: .25;
    filter: grayscale(1);
}
.app-card.outlined {
    border: 1px solid #0B3D91;
    box-shadow: 0 0 8pt 4pt #0B3D9133;
}
.app-card.outlined:hover {
    box-shadow: 0 0 8pt 4pt #0B3D9177;
}


/* Layer order */
#background {
    z-index: 0;
}
#page {
    z-index: 10;
}
.dropdown-menu {
    z-index: 20;
}
</pre></body></html>