html {
    scroll-snap-type: y mandatory;
}

#wrapper {
    overflow: hidden;

}


/*SCROLL BAR*/
*::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.25);
    background-color: transparent;
}

*::-webkit-scrollbar
{
    width: 5px;
    opacity: 0;
    background-color: transparent;
}

*::-webkit-scrollbar-thumb
{
    background-color: darkgrey;
    border-radius: 3rem;
    height: 60%;
}