:root {
  --color-paper: #f5c9cb;
  --color-accent: #c02956;
  --color-text: #111111;
  --color-muted: rgba(17, 17, 17, 0.62);
  --color-highlight-green: #155425;
  --color-surface: rgba(255, 255, 255, 0.84);
  --page-width: 393px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font-main: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-paper);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(rgba(245, 201, 203, 0.12), rgba(245, 201, 203, 0.12)),
    url("../assets/images/bg-paper.png") center / cover fixed;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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