* {
    --primary-color: #251100;
    --accent-color: #b8ac3c;
    --text-color: #ffffff;
    --text-alt-color: #b8ac3c;
    --border-color: #392f22;
    --background-color: #100e0b;
    --background-color-secondary: #1a1611;
}

html {
    background-color: var(--background-color-secondary);
}

body {
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    justify-content: center;

    background: #100E0B;
    background: linear-gradient(180deg, var(--background-color) 0%, var(--background-color-secondary) 100%);
    background-repeat: no-repeat;
}

h1,h2,h3,h4 {
    font-family: 'RDR';
    margin: 0;
    color: var(--text-alt-color);
}

a,b,h5,h6 {
    font-family: 'NotoSerifBold';
    margin: 4px 0;
    color: var(--text-color);
}

a {
    color: var(--text-alt-color);
    text-decoration: none;
}

p {
    font-family: 'NotoSerifRegular';
    color: var(--text-color);
    margin: 4px 0;
}

h6 {
    font-size: small;
}

@font-face {
    font-family: 'NotoSerifRegular';
    src: url(/static/fnt/NotoSerif-Regular.ttf);
}

@font-face {
    font-family: 'NotoSerifBold';
    src: url(/static/fnt/NotoSerif-Bold.ttf);
}

@font-face {
    font-family: 'RDR';
    src: url(/static/fnt/rdr.ttf);
}