/* examples/sticky/example4/style.css */
section {
  width: 100vw;
  height: 150vh;
}

section .content {
  position: sticky;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items:  center;
  width: 100%;
  height: 100vh;
  top: 0;
}
