* {
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
}

.panel {
  height: 100%;
  width: 100%;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  border: solid 10px white;
}

.panel img {
  width: 100%;
  height: 100%;
}

#demo {
  position: absolute;
  width: auto;
  height: auto;
  max-height: 140px;
  max-width: 90%;
  font-weight: 700;
  left: 50%;
  bottom: 20px;
  opacity: 0;
}

#circles path {
  cursor: pointer;
}

#wrap {
  width: 50%;
  height: 50%;
  left: 50%;
  position: absolute;
  border: solid 10px #42a6e0;
  border-radius: 100%;
  overflow: hidden;
  opacity: 0;
}