:root {
    --brand: #5d2ede;
    --brand-2: #7b4bf0;
    --brand-3: #b89bfb;
    --brand-soft: #efe7ff;
    --ink: #0b0b14;
    --ink-2: #1a1a26;
    --muted: #6b6f7b;
    --muted-2: #9ca0ac;
    --line: rgba(11, 11, 20, 0.07);
    --line-2: rgba(11, 11, 20, 0.12);
    --bg: #fbfafc;
    --white: #ffffff;
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    font-family:
        "Inter Tight",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
