@import "_varsLanding.css";
@import "_nav.css";
@import "_header.css";
@import "_interface.css";
@import "_customers.css";
@import "_footer.css";

::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    height: 100vh;
    background: var(--background);
    z-index: -1;
    pointer-events: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}