/**
 * ========================================
 * 01-reset.css
 * ========================================
 * Назначение: Сброс стилей браузера по умолчанию
 * Размер: ~50 строк
 * ========================================
 */

/* CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML & Body */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Списки */
ul,
ol {
  list-style: none;
}

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

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

/* Кнопки и инпуты */
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

