/* _01-reset.css */
/* полный сброс */

*,
*::before,
*::after {
  box-sizing: border-box; /* чтобы padding не ломал размеры */
  margin: 0;
  padding: 0;
  border: none;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  cursor: pointer;
}
