*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--font-body);

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    color:inherit;
    text-decoration:none;

}

button,
input,
textarea{

    font:inherit;
    outline:none;

}

button{

    cursor:pointer;

}

ul{

    list-style:none;

}