:root {
  --font-main: "Manrope", Arial, Helvetica, sans-serif;

  --color-text: #102219;
  --color-muted: #5f7267;
  --color-background: #ffffff;

  --color-green: #17643c;
  --color-green-dark: #0c3f27;
}

html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

.site-main {
  display: block;
  width: 100%;
}