:root {
  --green: #2d4224;
  --green-bar: #526948;
  --green-box: #50803c;
  --yellow: #f9d448;
  --teal: #4495a2;
  --mint: #45de84;
  --text: #54595f;
  --text-muted: #7a7a7a;
  --black: #000;
  --white: #fff;
  --gray: #ececec;
  --font: Asap, sans-serif;
  --font-title: "Francois One", sans-serif;
  --font-box: Oxygen, sans-serif;
  --container: 1140px;
  --header-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

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

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

h1, h2, h3, p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 40;
  background: #111;
  color: #fff;
  padding: 8px 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, var(--header-w));
  margin-inline: auto;
}
