:root {
    --color-bg: hsl(44, 100%, 97%);
    --color-dark: #292524;
    --color-gray: #78716c;
    --color-rule: #a8a29e;
    --color-border: hsl(44, 30%, 88%);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background: var(--color-bg);
    color: var(--color-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.page__logo {
    width: min(19rem, 72vw);
    height: auto;
    margin-bottom: 3rem;
}

.page__title {
    margin: 0 0 1.5rem;
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 6vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
}

.page__rule {
    width: 6rem;
    height: 1px;
    margin-bottom: 1rem;
    background: var(--color-rule);
}

.stage {
    width: 100%;
    max-width: 30rem;
}

.stage__canvas {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-gray);
    text-align: center;
}

.footer p {
    max-width: 56rem;
    margin: 0 auto;
    font-size: 0.875rem;
}
