:root {
  --ink: #151515;
  --muted: #656565;
  --line: #e7e7e7;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --brand: #08915d;
  --brand-dark: #066b47;
  --accent: #e1492d;
  --sand: #efe4d3;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}

img,
svg {
  display: block;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

main {
  width: 100%;
  margin: 0 auto;
}
