*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    transition: all .2s linear;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html{
    cursor: default;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    background: #fff;
}

html::-webkit-scrollbar{
    width: .6rem;
}
 html::-webkit-scrollbar-track{
    background-color:#333;
}
 html::-webkit-scrollbar-thumb{
    background-color: #777;
    border-radius: 3px;
    cursor:grabbing;
}

section{
    padding: 1.5rem 10%;
    min-height: 20svh;
}