Skip links
Explore
Drag
/* Set the root element for scroll snap */ html, body { height: 100%; margin: 0; padding: 0; overflow-x: hidden; scroll-snap-type:y mandatory; scroll-behavior: smooth; } /* Apply scroll snap effect to the container */ .scroll-snap-container { height: 100vh; scroll-snap-align: start; position: relative; }