/* reset.css — CSS Reset & Base Styles */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  min-width: 320px;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  color: var(--color-text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
