*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-bg);
}
a {
    color: var(--color-primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    display: block;
}
button, input, select, textarea {
    font: inherit;
    color: inherit;
}
table {
    border-collapse: collapse;
    width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
}
