/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;
}

body{

    font-family:var(--font-primary);

    background:var(--color-bg);

    color:var(--color-text);

    line-height:1.6;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;
}

img{

    display:block;

    max-width:100%;
}

button{

    border:none;

    background:none;

    font:inherit;

    cursor:pointer;
}

a{

    text-decoration:none;

    color:inherit;
}

ul{

    list-style:none;
}