:root {
  --font: "Poppins", sans-serif;
  --font-alt: "Overpass", sans-serif;
  --text: #000000;
  --muted: #757575;
  --bg: #ffffff;
  --cream: #f3f2ef;
  --card: #fafafa;
  --red: #a00505;
  --accent: #cf945f;
  --ink: #141414;
  --container: 1200px;
  --header-h: 84px;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  color: var(--text);
  background: var(--bg);
}

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

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

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