html {
  font-size: 18px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: arial;
  background-color: #1e1e1e;
  height: 100%;
  
}

.box {
  position: absolute;
  top: 50%; right: 50%;
  width: 100vw;
  transform: translate(50%,-50%);

	
}


.hero {
  max-width: 100vh!important;
  max-height: 100vh!important;
  width: 100%;
  height:100%;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
 

  
}
.hero img {
  max-width: 100vh!important;
  max-height: 100vh!important;
    width: 100%;
  height:100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
   margin: auto;
  


}
.hero .point {
  position: absolute;
  height: 30px;
  width: 30px;
  background: rgba(0, 0, 0, 1.0);
  border-radius: 290px;
  text-decoration: none;
  transition: 0.35s;
  transition-delay: 0.25s;
  animation: blink 0.9s infinite linear alternate;
  border-radius: 100%;
}
.hero .point span {
  position: absolute;
  min-width: 80px;
  padding: 7px;
  color: #fff;
  display: block;
  text-align: center;
  transform: translateX(-30%) translateY(-90%) scale(1);
  font-size: 12px;
  transition: 0.45s;
  background: #000a;
  border-radius: 3px;
  transition-delay: 0s;
  opacity: 0;
}




.hero .point:hover {
  transform: scale(1.5);
  transition-delay: 0s;
  animation: blink 0s;
  opacity: 1;
}
.hero .point:hover span {
  opacity: 1;
  transform: translateX(-30%) translateY(-130%) scale(1);
  transition-delay: 0.25s;
}

.hero .p0 {
  top: 90%;
  left: 50%;
}

.hero .p02 {
  top: 5%;
  left: 50%;
}

.hero .p1 {
  top: 50%;
  left: 35%;
}
.hero .p2 {
  top: 40%;
  left: 90%;
}
.hero .p3 {
  top: 55%;
  left: 72%;
}

@keyframes blink {
  0% {
    opacity: 0.45;
  }
  100% {
    opacity: 1;
  }
}