/* Обнуление */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Наследование шрифтов */
html,
body {
    font-size: 100%;
    line-height: 1.05;
}

/* Сброс ссылок и кнопок */
a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Список без точек */
ul,
ol {
    list-style: none;
}

/* Изображения */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Таблицы */
table {
    border-collapse: collapse;
    border-spacing: 0;
}