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

html, body {
  height: 100%;
  overflow-x: hidden;
}

.container {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

.fullscreen {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
}
