/* //////////////////////////////////////////////// */
/* General */

* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: quicksand, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  color: var(--black);
  background-color: var(--white);
  position: relative;
}

body.noScroll {
  height: 100vh;
  overflow: hidden;
}
