/*
==========================================
Reset
==========================================
*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    background:var(--color-background);

    color:var(--color-text);

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    cursor:pointer;

    border:none;

    background:none;

}

input,
textarea,
select{

    font:inherit;

}