@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700;800&display=swap');

:root {
    --bg-900: #060b16;
    --text-100: #f8fafc;
    --muted-300: #cbd5e1;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    color-scheme: dark;
}

body {
    font-family: "Rubik", "Segoe UI", sans-serif;
    color: var(--text-100);
    background: var(--bg-900);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    color-scheme: dark;
}
