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

html {
    min-height: 100%;
    color-scheme: dark;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: var(--lf-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    background: var(--lf-bg);
    color: var(--lf-text);
    -webkit-font-smoothing: antialiased;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

img,
svg {
    display: block;
    max-width: 100%;
}
