*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

ul,
ol {
  list-style: none;
}

a {
  color: currentColor;
}

:root {
  --font-family: "Sofia Sans Semi Condensed", sans-serif;

  --font-weight-body: 600;
  --font-weight-heading: 900;

  --font-size-body: 0.8rem;
  --font-size-heading: 3.052rem;
  --font-size-heading-small: 1.25rem;

  --line-height-body: 1.4;
  --line-height-heading: 0.9;

  --color-background: #f6f8ff;
  --color-text: #181918;
  --color-white: #f6f8ff;
  --color-map: #f5c859;
  --color-no-data: #e2e6ff;
  --color-primary-light: #eea053;
  --color-primary-dark: #d14e48;
}

@media screen and (min-width: 880px) {
  :root {
    --font-size-body: 1rem;
    --font-size-heading: 3.815rem;
    --font-size-heading-small: 1.563rem;
  }
}

body {
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: var(--font-weight-body);
  color: var(--color-text);
  background-color: var(--color-background);
}

main {
  width: min(100% - 4rem, 64rem);
  margin: 2rem auto;
}

h1 {
  font-size: var(--font-size-heading);
  line-height: var(--line-height-heading);
  font-weight: var(--font-weight-heading);
}

h1 small {
  font-size: var(--font-size-heading-small);
}

h1 > div {
  display: flex;
  align-items: center;
  gap: 0.1em;
}

main > * + * {
  margin-block-start: 2rem;
}

.vis {
  display: flex;
  justify-content: center;
  font-size: 16px;
}
