@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: linear-gradient(180deg, #fdf8ea 0%, var(--bg) 58%, #f4e9c7 100%);
}

img,
svg {
  display: block;
  max-width: 100%;
}
