/* Простой CSS Reset для единообразия отображения во всех браузерах */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth; /* Плавная прокрутка средствами CSS (как запасной вариант) */
}

body, h1, h2, h3, h4, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Убирает отступ под картинкой */
}

button, input, select, textarea {
    font: inherit;
    background: none;
    border: none;
}

button {
    cursor: pointer;
}
