:root {
    --main-font-family: 'EB Garamond', serif;

    --green: #549045;
    --creme: #e6dac7;
}

* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    background: var(--green);
    font-family: var(--main-font-family);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}
img {
    max-width: 100%;
    height: auto;
}

#page {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    padding: 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
#page img {
    margin-bottom: 1em;
}
#page p {
    text-align: center;
}

#page a {
    color: var(--creme);
    text-decoration: none;
}
#page a:focus, #page a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    #page {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    #page img {
        flex: 2 2 400px;
        max-width: 400px;
        margin: 0 1em 0 0;
    }
    #page p {
        max-width: 640px;
        flex: 1 1 640px;
    }
}

