/*==================================================
GREEN ASIST | 09-reset.css 
==================================================*/

/*==============================
GLOBAL RESET
==============================*/

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

/*==============================
HTML / BODY BASE
==============================*/

html{
font-size:16px;
scroll-behavior:smooth;
}

body{
font-family:var(--font-family);
font-size:var(--font-size-md);
color:var(--color-text);
background:var(--color-white);
line-height:1.4;
}

/*==============================
LINK RESET
==============================*/

a{
text-decoration:none;
color:inherit;
}

/*==============================
LIST RESET
==============================*/

ul,ol{
list-style:none;
}

/*==============================
BUTTON RESET
==============================*/

button{
font-family:inherit;
}

/*==============================
IMAGE RESET
==============================*/

img{
max-width:100%;
display:block;
}