body {
  background: #fceec1;
}

.box {
  position: relative;
  margin: auto;
  margin-top: 5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #fffcf4;
}

.donut-circle {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: #fc75b9;
  border-radius: 50%;
  z-index: 5;
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
  animation-duration: 3s;
  animation-delay: 3s;
  animation-iteration-count: infinite;
}

.donut-circle-copy {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fc75b9;
  border-radius: 50%;
  border-bottom: 10px solid #f1be7c;
  box-shadow: #efb365 0px 2px 3px 1px;
  z-index: 5;
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(5px);
  }
  10% {
    transform: scale(1.01, 1) translateY(10px);
  }
  30% {
    transform: scale(1, 1) translateY(-60px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-7px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
.donut-hole {
  position: absolute;
  top: 33%;
  left: 33%;
  width: 34%;
  height: 34%;
  background: white;
  border-radius: 50%;
  z-index: 6;
}

.donut-face {
  position: absolute;
  top: 5%;
  left: 35%;
  width: 30%;
  height: 25%;
  border-radius: 50%;
}

.eyes:before,
.eyes:after {
  content: '';
  position: absolute;
  top: 20%;
  width: 8px;
  height: 6px;
  border-radius: 50%;
  background: #6D3D1B;
  transition: .5s;
  animation: jump-eyes 3s infinite;
}

.eyes:before {
  left: 10%;
}

.eyes:after {
  right: 10%;
}

@keyframes jump-eyes {
  0% {
    height: 4px;
  }
  30% {
    height: 4px;
  }
  50% {
    height: 5px;
  }
  67% {
    height: 6px;
  }
  100% {
    height: 6px;
  }
}
.mouth {
  position: absolute;
  top: 60%;
  left: 30%;
  width: 20px;
  height: 3px;
  background: transparent;
  border-top: 0;
  border-bottom: 4px solid #6D3D1B;
  border-radius: 0 0 126px 126px / 0 0 90px 90px;
}

.sprinkler-1 {
  position: absolute;
  width: 14px;
  height: 4px;
  top: 20%;
  left: 70%;
  transform: rotate(140deg);
  background: #7FD4FA;
  border-radius: 50px;
}

.sprinkler-2 {
  position: absolute;
  width: 14px;
  height: 4px;
  top: 35%;
  left: 80%;
  transform: rotate(180deg);
  background: #F8CD54;
  border-radius: 50px;
}

.sprinkler-3 {
  position: absolute;
  width: 14px;
  height: 4px;
  top: 60%;
  left: 75%;
  transform: rotate(160deg);
  background: #B8E986;
  border-radius: 50px;
}

.sprinkler-4 {
  position: absolute;
  width: 14px;
  height: 4px;
  top: 80%;
  left: 65%;
  transform: rotate(240deg);
  background: #F8CD54;
  border-radius: 50px;
}

.sprinkler-5 {
  position: absolute;
  width: 14px;
  height: 4px;
  top: 80%;
  left: 40%;
  transform: rotate(30deg);
  background: #7FD4FA;
  border-radius: 50px;
}

.sprinkler-6 {
  position: absolute;
  width: 14px;
  height: 4px;
  top: 70%;
  left: 20%;
  transform: rotate(100deg);
  background: #B8E986;
  border-radius: 50px;
}

.sprinkler-7 {
  position: absolute;
  width: 14px;
  height: 4px;
  top: 50%;
  left: 10%;
  transform: rotate(10deg);
  background: #7FD4FA;
  border-radius: 50px;
}

.sprinkler-8 {
  position: absolute;
  width: 14px;
  height: 4px;
  top: 25%;
  left: 20%;
  transform: rotate(160deg);
  background: #F8CD54;
  border-radius: 50px;
}

.donut-hand-left {
  position: absolute;
  left: -20%;
  top: 50%;
  width: 25%;
  height: 7%;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  transform: rotate(140deg);
  background: #f8DAAE;
  z-index: 4;
  animation: hand-jump 3s infinite;
  animation-delay: 3s;
}

@keyframes hand-jump {
  0% {
    transform: rotate(140deg);
  }
  10% {
    transform: rotate(140deg);
  }
  30% {
    transform: rotate(160deg);
  }
  50% {
    transform: rotate(140deg);
  }
  57% {
    transform: rotate(140deg);
  }
  64% {
    transform: rotate(140deg);
  }
  100% {
    transform: rotate(140deg);
  }
}
.donut-hand-right {
  position: absolute;
  right: -20%;
  top: 50%;
  width: 25%;
  height: 7%;
  border-top-left-radius: 40%;
  border-bottom-left-radius: 40%;
  transform: rotate(220deg);
  background: #f8DAAE;
  z-index: 4;
  animation: hand-jump-right 3s infinite;
  animation-delay: 3s;
}

@keyframes hand-jump-right {
  0% {
    transform: rotate(220deg);
  }
  10% {
    transform: rotate(220deg);
  }
  30% {
    transform: rotate(200deg);
  }
  50% {
    transform: rotate(220deg);
  }
  57% {
    transform: rotate(220deg);
  }
  64% {
    transform: rotate(220deg);
  }
  100% {
    transform: rotate(220deg);
  }
}
.donut-leg-left {
  position: absolute;
  bottom: 15%;
  left: 40%;
  width: 3%;
  height: 32%;
  background: #EEBB78;
  z-index: 1;
  animation: bounce-leg 3s infinite;
  animation-delay: 3s;
}

.donut-leg-right {
  position: absolute;
  bottom: 15%;
  right: 40%;
  width: 3%;
  height: 32%;
  background: #EEBB78;
  z-index: 1;
  animation: bounce-leg 3s infinite;
  animation-delay: 3s;
}

@keyframes bounce-leg {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1, 1) translateY(0);
  }
  30% {
    transform: scale(1, 1) translateY(-30px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-7px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
.donut-feet {
  position: absolute;
  bottom: 0%;
  left: -4px;
  width: 18px;
  height: 12%;
  background: #8C6028;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.shadow {
  position: absolute;
  left: 35%;
  bottom: 12%;
  width: 30%;
  height: 6%;
  background: #DAD8D3;
  border-radius: 50%;
  z-index: 0;
  animation: shadow-scale 3s infinite;
  animation-delay: 3s;
}

@keyframes shadow-scale {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  30% {
    transform: scale(1.3, 1.2);
    opacity: 0.6;
  }
  50% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
