/* Force page to start at top */
html {
    scroll-behavior: auto !important;
}

html, body {
    overflow-anchor: none;
    scroll-padding-top: 0 !important;
}

/* Temporarily hide content until scrolled to top */
body.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}
