:root {
  --blue: #00469f;
  --text: #333333;
  --black: #000000;
  --white: #ffffff;
  --muted: #f5f5f5;
  --border: #f1f1f1;
  --container: 1140px;
  --font-basic: "Basic", Tahoma, sans-serif;
  --font-arimo: "Arimo", Tahoma, sans-serif;
  --font-body: Tahoma, "Segoe UI", sans-serif;
}

html {
  font-size: 16px;
}

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

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

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

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