* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none
}

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

button,
input,
select,
textarea {
  font-family: inherit
}

section {
  position: relative
}