* {
  padding: 0;
  margin: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#title{
  margin: 3vh 0;
}
svg{
  height: 88vh;
}
path,polygon {
  transition: all .9s;
}
path:hover,polygon:hover {
  stroke: black;
  stroke-width: 0.1;
  cursor: pointer;
  	fill:#046700;

}
.mphov:hover{
	fill:#ff3d00;
}
#tooltip {
  visibility: hidden;
  max-width: 250px;
  padding: 10px;
  position: fixed;
  background-color: white;
  opacity: 0.7;
  box-shadow: 4px 5px 5px 2px black;
  border-radius: 10px;
}

#tooltip span {
  font-weight: bolder;
}