html{

    scroll-behavior:smooth;

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--font-family-base);

    background:var(--white);

    color:var(--black);
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    cursor:pointer;

    border:none;

    background:none;

    font-family:inherit;

}

input,
textarea{

    font-family:inherit;

}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
