:root {
  --blue: #1259d8;
  --cyan: #22c9f2;
  --purple: #4a30c1;
  --orange: #f6911e;
  --ink: #20223a;
  --muted: #5f6475;
  --line: rgba(32, 34, 58, 0.12);
  --surface: #ffffff;
  --soft: #f5f8ff;
  --shadow: 0 22px 54px rgba(22, 37, 82, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f9faff;
  font-family: "Nunito Sans", Arial, sans-serif;
  line-height: 1.5;
}

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

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