:root {
    font-family: 'InterDisplay', 'Inter', 'Helvetica Neue', sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
    /* fix for Chrome */
}

body {
    margin: clamp(20px, 4vw, 24px);
    font-size: clamp(20px, 4vw, 24px);
    gap: clamp(20px, 4vw, 24px);
    max-width: 450px;
    cursor: default;
    display: grid;
}

a {
    color: black;
    text-decoration: underline;
    text-decoration-color: grey;
}

p {
    margin: 0px;
}

.keep-together {
    display: inline-block;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
    margin: 16px 0px;
}

h1 {
    font-size: calc(1em + 0.618em / 1);
}

h2 {
    font-size: calc(1em + 0.618em / 2);
}

h3 {
    font-size: calc(1em + 0.618em / 3);
}

h4 {
    font-size: calc(1em + 0.618em / 4);
}

h5 {
    font-size: calc(1em + 0.618em / 5);
}

h6 {
    font-size: calc(1em + 0.618em / 6);
}

#faces {
    line-height: 1.8;
}

.footnote {
    font-size: 14px;
    color: grey;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;

    a {
        color: grey;
    }

    ul,
    ol {
        list-style: none;
        padding: 0;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin: 0;
    }
}

img {
    max-width: 100%;
    height: auto;
}