svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.land {
  fill: #616160;
  stroke: #1D1D1B;
  stroke-width: 0.5;
  vector-effect: non-scaling-stroke;
  paint-order: stroke fill;
  transition: fill 0.2s 0.2s ease-in-out, stroke 0.2s 0.2s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.land.is-mapped {
  pointer-events: auto;
  cursor: pointer;
}
.land.is-revealed {
  fill: #919190;
}
.land.is-active, .land.is-mapped:hover {
  fill: #FCF0BD;
}
.land:focus, .land:focus-visible {
  outline: none;
  box-shadow: none;
}
svg.intro-finished .land.is-mapped {
  animation: pulse-mapped 2s 1 ease-in-out;
}
@keyframes pulse-mapped {
  0% {
    fill: #919190;
  }
  50% {
    fill: #FCF0BD;
  }
  100% {
    fill: #919190;
  }
}
