/* Общий сброс для всех страниц. :where() — нулевая специфичность,
   легко переопределяется обычным классом без !important. */

* {
    box-sizing: border-box;
}

:where(body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure, blockquote, fieldset) {
    margin: 0;
}

a {
    text-decoration: none;
}
