html, body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
}

hr {
    width: 30px;
    height: 3px;
    border: 0;
    margin: 0 auto 40px auto;
}

html {
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: #303030;
    opacity: 0.5;
}

html::-webkit-scrollbar-thumb {
    background: #D4AF36;
}

html::-webkit-scrollbar-thumb:hover {
    background: #7f7f7f;
}