#result {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#result > div {
  position: relative;
}

div#result-title {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--co2-bar-positive);
  color: #fff;
  border: solid 5px #fff;
  border-radius: 100%;
  width: 130px;
  height: 130px;
  transform: translateX(-80%) rotate(343deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#result-title h2 {
  font-size: 3em;
  line-height: 1em;
}

#result h2 {
  text-align: center;
}

#result .player-img {
  position: absolute;
  height: 40vh;
  width: 30vh;
  background-size: contain;
  background-color: transparent;
  left: 100%;
  bottom: 0%;
  pointer-events: none;
  transform: translate(-33%, 22%);
}

div#finalMap {
  filter: saturate(0.9) hue-rotate(350deg);
  border: solid 8px #cfdfc6;
  background: #b0c37f;
  border-radius: 10px;
  background-image: url(../img/pano/pano-forest.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

#finalMap .landscape {
  display: flex;
}

#finalMap .landscape > div {
  width: 6.5vw;
  height: 10vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
}

#finalMap .landscape > div:hover {
  background-size: 110%;
}

#finalMap > div:not(:first-child) {
  margin-top: -7.5%;
}

#finalMap .values {
  position: relative;
  margin-bottom: 20%;
  opacity: 1;
}

#finalMap .landscape > div:hover .values {
  opacity: 1;
}
