
@media (prefers-color-scheme: light) {
    :root {
        --background: #ffffff;
        --foreground: #0e0e0e;
        --accent: color(display-p3 0.13 0.422 1 / 1);
        --font-size: 1rem;
        --line-height: 1.54rem;
        --radius: 0;
        word-break: normal;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #111111;
        --foreground: #ffffff;
        --accent: color(display-p3 0.258 0.622 1 / 1);
        --font-size: 1rem;
        --line-height: 1.54rem;
        --radius: 0;
        word-break: normal;
    }
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--accent);
    color: var(--background);
    padding: 5px 10px;
    font-size: 2em;
    font-weight: bold;
    unicode-bidi: isolate;
    font-size: calc(var(--font-size)* 1.1);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.logo h1 {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

h2 {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: calc(var(--font-size)* .2);
}

a.button.inline::before {
    content: none;
}

a.button.inline::after {
    content: none;
}

a.read-more.button.inline {
    display: block;
}


figure.floatRight {
    float: right;
    max-width: 40%;
    margin-left: 2em;
    margin-top: 0;
}

figure.floatRight img {
    margin: 0;
}

@media (max-width: 684px) {
    figure.floatRight {
        float: none;
        max-width: fit-content;
        margin-left: 0em;
    }
}

a.appStoreButton {
    color: transparent;
    display: block;
}

a.appStoreButton img {
    padding: 0;
    margin: auto;
    border: none;
    height: 60pt;
}