:root {
    --background:   hsl(250, 17%, 95%);
    --foreground:   hsl(250, 16%, 19%);
    --primary:      hsl(293, 30%, 67%);
    --primary-dark: hsl(293, 32%, 52%);
    --primary-light:hsl(293, 40%, 88%);
    --sidebar-bg:   hsl(248, 20%, 13%);
    --sidebar-fg:   hsl(250, 14%, 80%);
    --text-primary: hsl(250, 16%, 19%);
    --radius:       0.75rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: "DM Sans", system-ui, sans-serif;
    background-color: var(--sidebar-bg);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* Remove outline on programmatic focus; show only for keyboard navigation. */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

#app {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
