.bee {
  position: fixed;
  z-index: 10;
}

.body {
  position: relative;
  width: 20px;
  height: 12px;
  border-radius: 50%;
  background: #23212c;
  overflow: hidden;
  z-index: 5;
}

.stripes {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 10;
}

.stripe {
  width: 3px;
  height: 100%;
  background: #f3c622;
}

.wings {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.wing {
  position: absolute;
  width: 10px;
  height: 10px;
  background: gray;
  opacity: 50%;
  border-radius: 100%;
  bottom: 7px;
  animation: flying-effect-animation 50ms linear infinite alternate;
}

.wing:first-child {
  left: 2px;
}

.wing:last-child {
  right: 2px;
  animation-delay: 25ms;
}

@keyframes flying-effect-animation {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 0.25;
  }
}
