/* === Обнуляющие стили === */

/* Убираем отступы, поля и рамки по умолчанию */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Наследуем семейство шрифта */
body,
button,
input,
textarea,
select {
  font-family: inherit;
}

/* Убираем стили списков */
ul,
ol {
  list-style: none;
}

/* Убираем подчёркивания у ссылок */
a {
  text-decoration: none;
  color: inherit;
}

/* Убираем рамки у изображений */
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Убираем особенности отображения заголовков */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Убираем курсив у address и других элементов */
em,
i {
  font-style: normal;
}

/* Убираем стандартное оформление кнопок */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Убираем обводку у фокусируемых элементов, если не используется outline */
:focus {
  outline: none;
}

/* Устанавливаем базовые стили для html и body */
html,
body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
