@import url("../fonts/fonts.css");

:root {
  --bg: #F4ECD9;
  --card: #FFFBF1;
  --ink: #1F2742;
  --muted: #6C6D8A;
  --gold: #F5C84B;
  --gold-d: #D7A422;
  --coral: #E8623E;
  --coral-d: #BC4524;
  --mint: #85B58A;
  --mint-d: #5F8E64;
  --blue: #1A6DF5;
  --blue-d: #0B4FD6;
  --line: #E5DCC1;
  --danger: #BC4524;
  --danger-soft: #FFF0EA;
  --green: #1F8F4B;
  --green-soft: #E8F4E6;
  --shadow-ink: 4px 4px 0 var(--ink);
  --shadow-ink-sm: 2px 2px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.csrf-form {
  display: none;
}

.mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
