@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');


:root {
    --color-bg: #190F0F;
    --color-text: #FFF3E9;
    --color-border: #7D3413;
    --color-select: #964E1E;
}

::selection {
    background: var(--color-select);
}

* {
    box-sizing: border-box;
    font-family: 'PT Serif', serif;
    font-weight: 100;
    color: var(--color-text);
}

body {
    margin: 0;
    background-color: var(--color-bg);
}