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

html,
body {
  height: 100%;
  background: #000;
  color: #f0f0f0;
  font-family: system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

body {
  touch-action: pan-y;
  line-height: 1.5;
}