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

:root{
    --primary:#16a34a;
    --primary-dark:#15803d;
    --primary-light:#dcfce7;

    --orange:#f59e0b;

    --text:#162033;
    --muted:#718096;

    --white:#ffffff;
    --border:#dce5e0;

    --danger:#dc2626;
    --danger-bg:#fef2f2;
}

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

body{
    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    color:var(--text);

    overflow-x:hidden;
}