<div class="container">
  <div class="section">Section 1</div>
  <div class="section">Section 2</div>
  <div class="section">Section 3</div>
</div>
body {
  margin: 0;
  overflow-x: hidden;
}

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

.section {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background-color: lightpink;
  scroll-snap-align: center;
}

.section:nth-of-type(2) {
  background-color: lightblue;
}

.section:nth-of-type(3) {
  background-color: lightyellow;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.