/* Import FontFamily */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

/* Root Color Scheme */

:root {
    --primary-dark: #19191e;
    --primary-light: #f7f7f9;

    --background: var(--primary-light);
    --foreground: var(--primary-dark);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: var(--primary-dark);
        --foreground: var(--primary-light);
    }
}

/* Root Style */

* {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: var(--foreground);
}

html, body {
    margin: 0;
    height: 100dvh;
    background: var(--background);
}