@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@media (prefers-color-scheme: light) {
    :root {
        --bg-color: #fff;
        --fg-color: #000;
        --spot-color: #423ffc;
        --dim-color: #aaa;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #000;
        --fg-color: #ccc;
        --spot-color: #246539;
        --dim-color: #777;
    }
}

@media only print {
    :root {
        --spot-color: var(--fg-color);
    }
}

* {
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
}

a {
    text-decoration-thickness: 0.075em;
}

a, a:link, a:hover, a:active, a:visited {
    color: #1f5530;
}

html {
    color: var(--fg-color);
    background: var(--bg-color);
    margin: 0;
    padding: 0;
    font-size: 1.2em;
}

body {
    padding: 0;
    margin: 2em;
    font-family: "IBM Plex Serif", serif;
}

h1 {
    font-family: "IBM Plex Serif", serif;
    font-weight: 200;
    font-size: 4em;
    line-height: .8em;
    margin: 0;
}

h2 {
    font-weight: 300;
    font-size: 1.5em;
    font-style: italic;
    margin: 1em 0;
}

i {
    letter-spacing: 0.025em;
}

.bio {
    display: flex;
    text-align: justify;
    line-height: 1.5em;
    gap: 2em;
}

.column {
    flex: 1;
}

.and {
    font-family: "Work Sans", sans-serif;
    font-size: 2em;
    font-weight: 300;
    margin: 1em 0;
}

@media only screen and (max-width: 500px) {
    html {
        font-size: 1em;
    }
}

@media only screen and (max-width: 800px) {
    .bio {
        display: block;
    }
}