* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

body {
  width: 100vw;
  height: 100vh;
}

#map-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#map {
  width: 2345px;
  height: 2345px;
  background: url(../images/ieee.png) no-repeat center center/cover;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  position: absolute;
  top: 0;
  left: 0;
}

#map .point {
  width: 5rem;
  height: 5rem;
  border-radius: 2.5rem;
  background-color: white;
  position: absolute;
}

#map .point:nth-child(1) {
  top: 15%;
  left: 15%;
}

#map .point:nth-child(2) {
  top: 25%;
  left: 25%;
}

#map .point:nth-child(3) {
  top: 35%;
  left: 35%;
}
/*# sourceMappingURL=style.css.map */