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

:root {
    --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --text: #011c32;
}

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

body {
    font-family: var(--font-family);
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
}

#root {
    overflow-x: clip;
    width: 100%;
}

*, *::before, *::after {
    font-family: inherit;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
