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

body {
  width: 100vw;
  height: 100vh;
}

body .container {
  width: 100%;
  height: 100%;
  background-color: green;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  overflow-y: scroll;
  overflow-x: hidden;
}

body .container section {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  scroll-snap-align: start;
}

body .container section h1 {
  font-size: 15em;
  font-family: Arial, Helvetica, sans-serif;
}

body .container section:nth-child(1) {
  background-color: #4e4909;
}

body .container section:nth-child(2) {
  background-color: #138b19;
}

body .container section:nth-child(3) {
  background-color: #094e3f;
}
/*# sourceMappingURL=main.css.map */