[id="T3057851291"].page {
min-height: var(--viewport-height);
}html {
scroll-behavior: smooth;
scroll-snap-type: y mandatory;
}
body {
overflow-y: scroll;
scroll-snap-stop: always;
}
/* Slowing down scroll animation */
:root {
--scroll-duration: 6s; /* Adjust this value for slower/faster transitions */
}
html {
scroll-behavior: smooth;
}
html,
body {
transition: scroll-top var(--scroll-duration) ease-in-out;
}