*,
*::before,
*::after {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
    overflow-x: hidden;
}

body {
    margin:0;
    font-family:
    "Inter",
    Arial,
    sans-serif;
    background:var(--bg-main);
    color:var(--text-main);
    overflow-x: hidden;
}

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

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

button {
    font-family:inherit;
}