/* Обнуление базовых стилей */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
  display: block;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Убираем подчёркивание и цвет ссылок по умолчанию (опционально) */
a {
  text-decoration: none;
  color: inherit;
}

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

/* Убираем рамки у кнопок и полей ввода */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
