@font-face {
    font-family: "Anniversary Segoe Print";
    src: url("../fonts/segoe-print.ttf") format("truetype");
    font-weight: 400 699;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "Anniversary Segoe Print";
    src: url("../fonts/segoe-print-bold.ttf") format("truetype");
    font-weight: 700 900;
    font-style: normal;
    font-display: block;
}

:root {
    --bg: #fffaf6;
    --paper: #fffdf9;
    --paper-soft: #fff7ef;
    --line: rgba(116, 79, 75, 0.16);
    --line-strong: rgba(227, 92, 113, 0.34);
    --coral: #f16b7c;
    --coral-strong: #de4d66;
    --rose: #ffdce0;
    --sage: #a8bd93;
    --sky: #b9d9e2;
    --honey: #f3c76c;
    --berry: #743149;
    --ink: #33202b;
    --text: #67515b;
    --muted: #9a7a83;
    --shadow: 0 18px 40px rgba(116, 79, 75, 0.13);
    --shadow-soft: 0 9px 22px rgba(116, 79, 75, 0.11);
    --radius: 14px;
    --radius-sm: 9px;
    --max-width: 1080px;
    --script: "Anniversary Segoe Print", "Segoe Print", "Comic Sans MS", "Bradley Hand ITC", "Lucida Handwriting", cursive;
    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0;
}

*::before,
*::after {
    -webkit-tap-highlight-color: transparent;
}

html {
    min-height: 100%;
    color-scheme: light;
    scroll-behavior: smooth;
    scrollbar-color: rgba(116, 49, 73, 0.24) transparent;
    scrollbar-width: thin;
    background: var(--bg);
}

* {
    scrollbar-color: rgba(116, 49, 73, 0.24) transparent;
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(116, 49, 73, 0.28);
    background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(222, 77, 102, 0.46);
    background-clip: content-box;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    color: var(--text);
    background: var(--bg);
    font-family: var(--sans);
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}
