*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    font-size: 10px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    min-width: 32rem;
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-paper);
    word-break: keep-all;
    overflow-x: hidden;
}
body.no-scroll {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
textarea,
select {
    font: inherit;
}
button {
    border: 0;
    background: none;
    cursor: pointer;
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
img {
    height: auto;
}
section,
header,
footer,
main,
div {
    min-width: 0;
}
::selection {
    color: var(--color-white);
    background: var(--color-primary);
}
