*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-root);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-md);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: var(--leading-normal);
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: var(--leading-tight);
}

h1 { font-size: var(--text-xl); }
h2 { font-size: var(--text-lg); }
h3 { font-size: var(--text-md); }
h4 { font-size: var(--text-base); }

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-hover);
}

code, .mono {
    font-family: var(--font-mono);
    font-size: 0.92em;
}

small {
    font-size: var(--text-xs);
}
