* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.world-map-wrapper {
  width: 100%;
  height: 100vh;
  /* background: hsl(215, 40%, 20%); */
  /* center the world-map in the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
}

.world-map {
  width: 600px;
  cursor: grab;
  position: relative;
}

.world-map:active {
  cursor: grabbing;
}

.world-map .list-group {
  list-style: none;
  position: absolute;
  right: -120px;
  bottom: 0;
  transform: translateX(100%);
  cursor: auto;
}

.world-map .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.world-map .list-item:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 28px;
  border-radius: 9999px;
}

.world-map .list-item.head:before {
  background-color: rgba(71, 206, 183, 1);
}

.world-map .list-item.ba:before {
  background-color: rgba(43, 100, 94, 1);
}

.world-map .list-item.strong:before {
  background-color: rgba(183, 183, 183, 1);
}

.world-map text {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.landing-name-main.animation-bounced {
  animation-name: bounceInUp;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
  transition: 0s;
}

.landing-img.animation-bounced {
  animation-name: bounceInDown;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-direction: normal;
  transition: 0s;
}

.landing-img.animation-float-y {
  animation-name: float-y;
  animation-duration: 1.2s;
  animation-timing-function: linear;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 0s;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-15px);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(-30px);
  }

  80% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes float-y {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(-15px);
  }
}
