:root{
    --bg:#0B0E11;
    --surface:#181A20;
    --surface-2:#1E2329;
    --border:#2B3139;
    --text:#EAECEF;
    --text-strong:#FFFFFF;
    --muted:#929AA5;
    --muted-2:#707A8A;
    --yellow:#FCD535;
    --yellow-active:#F0B90B;
    --green:#0ECB81;
    --red:#F6465D;
    --on-yellow:#181A20;
}

*{
    box-sizing:border-box;
}

html,
body{
    min-height:100%;
}

body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,Arial,Helvetica,sans-serif;
}

button,
input{
    font:inherit;
}

button{
    cursor:pointer;
}
