/* Reboot.css: Сброс дефолтных стилей для кроссплатформенности */

/* Box-sizing по умолчанию */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Удаление margin/padding */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, ol, li, form, label, input, button {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;    
}

/* Нормализация списков */
ul, ol {
    list-style: none;
}

/* Нормализация форм */
button, input {
    background: none;
    border: none;
    font-family: inherit;
}

/* Таблицы */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Дополнительно: smooth scroll и image max-width */
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}