:root {
  --font-head: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-size: 16px;
  --text: #333333;
  --muted: #777777;
  --bg: #ffffff;
  --container: 1100px;
  --brand: #b33336;
  --brand-dark: #7a0000;
  --accent: #9d746c;
  --ink: #3b3f48;
  --green: #1bb015;
  --green-border: #2f6e14;
  --wa: #25d366;
  --white: #ffffff;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

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

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