@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:wght@400;600;700&display=swap');

:root {
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: rgba(11, 11, 11, 0.65);
  --border: rgba(11, 11, 11, 0.9);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

