:root {
  --font: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size: 16px;
  --text: rgb(51, 65, 85);
  --bg: rgb(255, 255, 255);
  --container: 1140px;
  --blue: #323aa3;
  --titlebar: #295aa7;
  --green: #1c813f;
  --footer: #212529;
  --lime: #32cd32;
  --muted: #7a7a7a;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--font-size, 16px);
  color: var(--text);
  background: var(--bg);
}

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

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