*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--background);

    color:var(--text);

    font-family:'Inter',sans-serif;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    font:inherit;

    border:none;

    cursor:pointer;

}

input,
select,
textarea{

    font:inherit;

}