@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

html,
body {
    width: 100%;
    min-height: 100dvh;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 1.25em;
    background-color: #fff;
    color: #000;
}

body {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 1rem 2rem;
}

* {
    box-sizing: border-box;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
}
h2 {
    font-size: 1.75rem;
    font-weight: 500;
}
h3 {
    font-size: 1.5rem;
    font-weight: 500;
}
h1, h2, h3, h4 {
	line-height: 1.25em;
	text-wrap: balance;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    width: 100%;
    margin-top: 2rem;
}

#page {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 1rem;

    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    padding: 1rem 20ch;

    background: #ede6e9;
    border: none;
    border-radius: 1rem;
}

#page > header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 0 1.5rem;
}
#page > footer {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 1rem 1.5rem;
}

#logomark { height: 3rem; }

#logomark a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

#logo {
    width: auto;
    height: 3rem;
}

#address {
    font-size: 1rem;
    line-height: 1.125em;
}

#content {
    grid-area: page;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;

    padding: 1.5rem;

    background: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 1rem;
}
#content > * {
    margin: 0;
}
