* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: clip;
}

html::-webkit-scrollbar {
  display: none;
}

html.noScroll {
  height: 100dvh;
  overflow: hidden;
}

body {
  position: relative;
  font-family: montserrat, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  color: var(--dark-grey);
  background-color: var(--light-grey);
  overflow-x: clip;
  transition: all 0.3s ease-in-out;
}

body.noScroll {
  height: 100dvh;
  overflow: hidden;
}
