html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#fullpage {
  height: 100vh;
  width: 100%;
  position: relative;
}

.fullpage-section {
  height: 100vh;
  width: 100%;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  font-size: 3em;
  scroll-snap-align: start;
  transition: transform 0.7s ease-in-out;
}

/* Each section fills screen vertically */
.fullpage-section {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

/* Horizontal slides container */
.slides {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  transition: transform 0.7s ease-in-out;
}

/* Each slide fills full screen horizontally */
.slide {
  flex: 0 0 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}
