html,
body {
  height: 100%;
  margin: 0;
  font-family: var(--font-inter);
  overflow-x: hidden;
  background: #d7d1d1;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.page {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.section-frame {
  display: block;
  width: 100%;
  height: 100vh;
  border: 0;
  background: transparent;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE / old Edge */
* {
  -ms-overflow-style: none;
}

html.is-scroll-locked,
body.is-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-scroll-locked {
  position: fixed;
  width: 100%;
}
