:root {
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-size: 16px;
  --text: rgb(51, 51, 51);
  --bg: rgb(255, 255, 255);
  --container: 1140px;
  --navy: #354f9a;
  --navy-2: #214999;
  --orange: #f08345;
  --orange-2: #ff7800;
  --gray: #eaeaea;
  --gray-2: #eae9e9;
  --accent: #354f9a;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgb(51, 51, 51);
  background: rgb(255, 255, 255);
}

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

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