/* Standalone styles for meta-refresh redirect stubs (portfolio freezes, uf-bee, …).
   Keep in sync with src/styles/common/non-blocks/reset.css link rules
   and src/styles/common/page.css .page dark background. */

* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
}

.page {
    padding: 20px 50px 30px 56px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.25;
}

a {
    text-underline-position: under;
    text-decoration-thickness: 0.3px;
    text-decoration-color: rgba(0, 0, 255, 0.3);
}

a:visited {
    color: #0000ff;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.95em;
}

@media (prefers-color-scheme: dark) {
    .page {
        background: #232a36;
        color: #fff;
    }

    a,
    a:visited {
        color: rgb(255, 255, 255);
        text-underline-position: under;
        text-decoration-thickness: 0.3px;
        text-decoration-color: rgba(255, 255, 255, 0.5);
    }
}
