html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

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

body {
    margin: 0;
    background-color: #fff;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    color: rgba(0, 0, 0, 0.87);
    line-height: 1.5;
    letter-spacing: 0.00938em;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: none;
}

/* color-scheme: only light — браузерный сигнал не применять Auto Dark Mode.
   filter: none — страховка от расширений (Chrome Auto Dark Mode for Web Contents). */
img,
svg {
    color-scheme: only light;
}

@media (prefers-color-scheme: dark) {
    img,
    svg {
        filter: none !important;
    }
}
