/* 1. Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* 2. Убираем стандартные отступы */
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl, dd {
    margin: 0;
    font: inherit;
}

/* 3. Базовые настройки body */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

/* 4. Списки без маркеров (если есть класс) */
ul[class],
ol[class] {
    list-style: none;
    padding: 0;
}

/* 5. Ссылки */
a {
    text-decoration: none;
    color: inherit;
}

/* 6. Изображения */
img,
picture {
    max-width: 100%;
    display: block;
}

/* 7. Формы */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Кнопки */
button {
    cursor: pointer;
    background: none;
    border: none;
}

/* 9. Таблицы */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 10. Сильные/важные тексты НЕ трогаем */
strong {
    font-weight: bolder;
}

/* 11. Улучшаем переносы текста */
p {
    overflow-wrap: break-word;
}

/* 12. Предпочтение уменьшенной анимации */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}






/* reset.css

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* Убираем ссылкам стандартное оформление */
/*a {
  text-decoration: none;
  color: inherit;
}*/

/* Работа с таблицами */
/*table {
  border-collapse: collapse;
  border-spacing: 0;
}*/

/* Убираем стандартные отступы у блока */
/*button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  appearance: none;
}*/

/* Для изображений */
/*img {
    display: block;
    max-width: 100%;
    height: auto;
}*/
