body {
  margin: 0;
  padding: 0;
  background-color: #F7D6B5;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
}

* {
  margin: 0;
  padding: 0;
}

main {
  width: 90%;
  height: 80vh;
  background-color: #FF9F55;
  /* display: grid;
  grid-template: none;
  justify-content: center; */
  align-content: center;
  margin: 0 auto;
  margin-top: 7vh;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
  overflow-x: hidden;
}

.page {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.page.is-current {
  visibility: visible;
}

.page.is-onTop {
  z-index: 1;
}

.page__one {
  background-color: #FF7055;
}

.page__two {
  background-color: #8199A3;
}

.btn-container {
  width: 90%;
  position: absolute;
  bottom: 3vh;
  display: grid;
  grid-template-columns: 20% 20%;
  justify-content: center;
}

.btn {
  position: relative;
  z-index: 2;
  display: block;
  width: 17vw;
  padding: 3%;
  margin-right: 1vw;
}

.page__title {
  font-family: sans-serif;
  font-size: 5vh;
  text-align: center;
  margin: 23vh auto;
}
