main {
  height: 100vh;
  overflow-y: auto;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

.section {
  height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 2rem;
  scroll-snap-align: start;
}

.section-1 {
  background-color: #d1c4e9;
}

.section-2 {
  background-color: #c8e6c9;
}

.section-3 {
  background-color: #b3e5fc;
}

.section-4 {
  background-color: #f0f4c3;
}

.section-5 {
  background-color: #ffccbc;
}

body {
  font-family: Lato, sans-serif;
}

.wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}