/*
===============================================
RESET CSS - Сброс стилей браузера
Не меняй этот файл! Это стандарт.
===============================================
*/

/* Box-sizing для всех элементов */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Убираем отступы по умолчанию */
* {
    margin: 0;
    padding: 0;
}

/* Настройка HTML и body */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'VAG Rounded Next', 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Убираем стили списков */
ul, ol {
    list-style: none;
}

/* Изображения и медиа */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Формы наследуют шрифт */
input,
button,
textarea,
select {
    font: inherit;
}

/* Убираем стандартные стили кнопок */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Убираем outline при фокусе (добавим свой) */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Переносы текста */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}