
html{
    box-sizing: border-box;
}


*,
*:before,
*:after {
    box-sizing: inherit;
}

/* Убираем оформление списков */
ul, ol {
    list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
picture {
    margin: 0;
}

/* Убираем подчеркивания у ссылок */
a {
    text-decoration: none;
    color: inherit;
}

/* Убираем border и фон у кнопок, делаем курсор */
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}


/* Формы */
input, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Убираем обводку у картинок и добавляем отзывчивость */
img, picture {
    max-width: 100%;
    display: block;
}
