* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    color: inherit;
}

body.reader-body {
    font-family: var(--font-reader);
}

.reader-article {
    font-family: var(--reader-font-family, var(--font-reader));
}
