/* Enable scroll snap on the page */
body {
scroll-snap-type: y mandatory;
overflow-y: scroll;
height: 100vh;
}
/* Each section will snap */
section {
scroll-snap-align: start;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
/* Optional: Remove scroll bounce effect on iOS */
html, body {
overscroll-behavior-y: none;
}