body {
  margin: 0;
  height: 100vh;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-container {
  position: relative;
}

#toggle {
  width: 60px;
  height: 60px;
  border: none;
  background: #0af;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.circle-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.circle-menu li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.circle-menu li a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #0af;
  padding: 4px;
}

.menu-open .circle-menu li {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .circle-menu li:nth-child(1) { transform: rotate(0deg) translate(100px) rotate(0deg); }
.menu-open .circle-menu li:nth-child(2) { transform: rotate(72deg) translate(100px) rotate(-72deg); }
.menu-open .circle-menu li:nth-child(3) { transform: rotate(144deg) translate(100px) rotate(-144deg); }
.menu-open .circle-menu li:nth-child(4) { transform: rotate(216deg) translate(100px) rotate(-216deg); }
.menu-open .circle-menu li:nth-child(5) { transform: rotate(288deg) translate(100px) rotate(-288deg); }