*,
*::before,
*::after {
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-root);
  scroll-behavior: smooth; /* for iOS Safari */
  text-size-adjust: none; /* for other mobile browsers */

  @media (prefers-reduced-motion: no-preference) {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font-primary);
}

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

button {
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

nav {

  ul,
  ol {
    list-style: none;
  }
}
