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

html,
body {
  overflow: hidden;
}
/*---------------------------------------------------------*/
.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
}
.point {
  position: absolute;
  top: 50%;
  left: 50%;
}
.point-0:hover .text {
  opacity: 1;
}
.point-1:hover .text {
  opacity: 1;
}
.point-2:hover .text {
  opacity: 1;
}

.point.visible .label {
  transform: scale(1, 1);
}
.point .label {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 30px;
  border-radius: 20%;
  background-color: #00000077;
  color: seashell;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  line-height: 30px;
  cursor: help;
  transform: scale(0, 0);
  transition: transform 0.3s;
}
.point .text {
  position: absolute;
  top: 20px;
  left: -110px;
  padding: 10px;
  border-radius: 5px;
  width: 200px;
  background: #00000077;
  color: seashell;
  line-height: 1.3em;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: 150;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.work-label:hover {
  background-color: #26b3eb;
  color: #000000;
  transition: 0.3s;
}
.team-label:hover {
  background-color: #ff1f1f;
  color: #000000;
  transition: 0.3s;
}

.skill-label:hover {
  background-color: #f7ca18;
  color: #000000;
  transition: 0.3s;
}


/*# sourceMappingURL=main.css.map*/