:root {
    --color-black: #090807;
    --color-room-dark: #160d08;
    --color-room-warm: #3d2112;

    --color-wood-dark: #2b160c;
    --color-wood-mid: #5a3019;
    --color-wood-light: #8a512a;

    --color-amber: #d78627;
    --color-amber-soft: rgba(215, 134, 39, 0.45);

    --color-text: #f1dfc5;
    --color-text-muted: rgba(241, 223, 197, 0.58);

    --stage-width: 1200px;

    --transition-standard: 220ms ease;
}

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

html {
    min-height: 100%;
    background: var(--color-black);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;

    overflow-x: hidden;

    color: var(--color-text);
    background: var(--color-black);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
picture,
svg,
canvas {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

::selection {
    color: #170d07;
    background: var(--color-amber);
}