html {
  margin: 0;
  padding:0;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.fullscreen {
  position: absolute;
  top: 0;
  height: 0;
  width: 100vw;
  height: 100vh;
}

.hotspot {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(103, 2, 2, 0.765);
}

.hotspot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  z-index: 2;
  transition: opacity 0.6s;
  animation: pulse 1.5s cubic-bezier(0.8, 0, 0.2, 1) 0s infinite;
}

.hotspot:hover {
  cursor: pointer;
}

.hotspot:hover{
  background-color: rgb(246, 87, 87);
}

.tooltip {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  text-indent: 20px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  display: inline;
  white-space: nowrap;
}

.tooltip::after {
  content: " ";
  position: absolute;
  top: 100%;
  /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.hotspot:hover .tooltip {
  visibility:visible;
}

@keyframes pulse {
  0% {
    transform: scale(0.4);
  }

  33% {
    transform: scale(1);
  }

  66% {
    transform: scale(0.4);
  }

  100% {
    transform: scale(0.4);
  }
}