<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    margin:0px;
    padding:0px;
    height:100%;
    width:100%;
    max-width:100%;
    font-size:0px;
}

html, body, a {
    color:var(--main-orange);
}

body {
}

html, body, input, textarea, button {
    font-family:avenir, helvetica neue, helvetica, arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.backdrop {
    background-color:rgba(var(--core-black-rgb), 0.35);
}

@supports (backdrop-filter:blur(4px)) or (-webkit-backdrop-filter:blur(4px)) {
    .backdrop {
        background-color:rgba(var(--core-black-rgb), 0.14);
        backdrop-filter:blur(10px);
        -webkit-backdrop-filter:blur(10px);
    }
}
</pre></body></html>