:root {
  --color-bg: #5a4e4e;
  --color-bg-deep: #4d4242;
  --color-bg-dark: #413636;
  --color-bg-ink: #332929;
  --color-accent: #ebca93;
  --color-accent-soft: #f3dfbc;
  --color-accent-deep: #d9b984;
  --color-text: #f8eded;
  --color-bg-rgb: 90, 78, 78;
  --color-bg-deep-rgb: 77, 66, 66;
  --color-bg-dark-rgb: 65, 54, 54;
  --color-bg-ink-rgb: 51, 41, 41;
  --color-accent-rgb: 235, 202, 147;
  --color-text-rgb: 248, 237, 237;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg-dark);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--color-bg-dark);
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

p {
  margin: 0 0 1rem;
}

#root {
  min-height: 100vh;
}
