body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  overflow: hidden;
}

#container {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 3em;
  margin-bottom: 0;
  text-transform: uppercase;
}

#map {
  position: relative;
  width: 90vw;
  display: flex;
}

path {
  position: relative;
  fill: rgb(221, 221, 221);
  stroke: white;
  stroke-width: 1.5px;
  transition: 0.05s;
}

.visited {
  fill: lightblue;
}

.visited:hover {
  stroke-width: 2px;
  fill: lightskyblue;
}

#info {
  position: absolute;
  pointer-events: none;
  background-color: white;
  opacity: 0;
  padding: 0.4em 0.75em;
  border-radius: 0.2em;
  transform: translate(-50%, calc(-100% - 7.5px));
  white-space: nowrap;
  font-size: 0.95rem;
  z-index: 1;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  transition: 0.05s, opacity 0.2s;
}

#info::before {
  position: absolute;
  content: "";
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7.5px solid white;
  z-index: 1;
}

#info.active {
  opacity: 1;
}
