@font-face {
    font-family: 'depixelKlein';
    src: url('../assets/fonts/depixel/DePixelKlein.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'depixelHalbfett';
    src: url('../assets/fonts/depixel/DePixelHalbfett.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'pixel32';
    src: url('../assets/fonts/pix32/Pix32.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BrotherSignature';
    src: url('../assets/fonts/brother_signature/Brother-Signature.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --paper: #fbf6ec;
    --paper-edge: #e9dfce;
    --ink: #4d4237;
    --ink-soft: #6b6154;
    --accent: #b4522f;
    --accent-deep: #8f3f23;
    --line: #cfc3ad;
    --shadow: rgba(58, 51, 43, 0.22);
}

::selection {
    background-color: rgb(169, 161, 174);
    color: #ffffff;
  }

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgb(150, 146, 175);
    border-radius: 3px;
}

::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}

body {
    color: var(--accent-deep);
    background-color: transparent;
    padding: 12px 12px;
}

h1, h2, h3, h4 {
    font-family: 'depixelHalbfett', 'pixel32';
}

h2 {
    font-size: 12px;
}

h3,h4 {
    font-size: 10px;
}

p {
    font-family: 'depixelKlein', 'pixel32';
    font-size: smaller;
}

a {
    color: #cfc3ad;
    text-decoration: var(--accent-deep) underline wavy;
    text-underline-offset: 2.5px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
    text-decoration: var(--accent-deep) underline wavy;
}

.page-footer {
    font-family: 'depixelKlein', 'pixel32';
    text-align: center;
    margin-top: 24px;
    color: var(--ink-soft);
    font-size:12px;
}

.divider {
    height: 0;
    border-bottom: 1px dashed rgb(225, 208, 198);
    margin: 6px 20px 6px;
}