@charset "UTF-8";
@keyframes body-shake {
  0% {
    width: 150px;
  }
  50% {
    width: 160px;
  }
  100% {
    width: 150px;
  }
}
@keyframes head {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  30% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
}
body {
  background: #e0756b;
  font-family: 'Happy Monkey', cursive;
}

.scene {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -80%);
  -webkit-transform: translate(-50%, -80%);
  -moz-transform: translate(-50%, -80%);
  -o-transform: translate(-50%, -80%);
  -ms-transform: translate(-50%, -80%);
}

.chicken__head {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fed01a;
  position: relative;
  animation: head 6s infinite 0.4s cubic-bezier(0.4, 0.34, 0.16, 0.79);
}
.chicken__left-eye {
  width: 16px;
  height: 18px;
  background: black;
  border-radius: 50%;
  position: absolute;
  left: 32px;
  top: 45px;
}
.chicken__left-eye:before {
  content: '';
  width: 6px;
  height: 7px;
  position: absolute;
  background: white;
  border-radius: 50%;
  left: 5px;
  top: 2px;
}
.chicken__right-eye {
  width: 16px;
  height: 18px;
  background: black;
  border-radius: 50%;
  position: absolute;
  left: 82px;
  top: 45px;
}
.chicken__right-eye:before {
  content: '';
  width: 6px;
  height: 7px;
  position: absolute;
  background: white;
  border-radius: 50%;
  left: 5px;
  top: 2px;
}
.chicken__beak {
  border: 20px solid transparent;
  border-top: 14px solid #fe7a318f;
  display: block;
  width: 0px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 59%;
}
.chicken__beak:before {
  content: '';
  border: 20px solid transparent;
  border-bottom: 14px solid #fe7a31;
  display: block;
  position: absolute;
  left: -20px;
  top: -48px;
}
.chicken__body {
  width: 150px;
  height: 140px;
  background: #fed01a;
  margin: auto;
  border-radius: 50%;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%);
  animation: body-shake 2.2s infinite 0.4s cubic-bezier(0.4, 0.34, 0.16, 0.79);
}

.eggshell__top-left {
  width: 100px;
  height: 140px;
  position: absolute;
  background: #fffce8;
  border-top-left-radius: 130%;
  border-top-right-radius: 0px;
  top: -30px;
  left: -35px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
.eggshell__top-right {
  width: 100px;
  height: 140px;
  position: absolute;
  background: #f9eed8;
  border-top-right-radius: 130%;
  top: -30px;
  left: 65px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
.eggshell__bottom-left {
  width: 100px;
  height: 140px;
  position: absolute;
  background: #fffce8;
  border-bottom-left-radius: 130%;
  top: 105px;
  left: -35px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
.eggshell__bottom-right {
  width: 100px;
  height: 140px;
  position: absolute;
  background: #f9eed8;
  border-bottom-right-radius: 130%;
  top: 105px;
  left: 65px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
.eggshell--opened {
  background: red;
}
.eggshell--opened .eggshell__top-left {
  top: -150px;
  transform: rotate(5deg);
}
.eggshell--opened .eggshell__top-right {
  top: -150px;
  transform: rotate(-15deg);
}
.eggshell--opened .eggshell__bottom-left {
  top: 160px;
}
.eggshell--opened .eggshell__bottom-right {
  top: 160px;
}

.help {
  color: #ffffffcf;
  left: 50%;
  position: absolute;
  top: 50%;
  font-size: 20px;
  width: 250px;
  transform: translate(160px, -50px);
  text-transform: uppercase;
}
.help__cloud {
  width: 272px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  height: 100px;
  position: absolute;
  left: -16px;
  top: -35px;
}
.help__cloud:after {
  content: '';
  position: absolute;
  display: block;
  border: 15px solid transparent;
  border-top: 25px solid #eb9f97;
  top: 72px;
  transform: rotate(38deg);
}
.help:before {
  content: 'Tap on me mec!! 👈';
  opacity: 1;
  visibility: visible;
  position: absolute;
  left: 40px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
.help:after {
  content: 'Happy Easter buddy 🐤';
  opacity: 0;
  position: absolute;
  visibility: hidden;
  left: -25px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
}
.help--opened:before {
  opacity: 0;
  visibility: hidden;
  left: -25px;
}
.help--opened:after {
  opacity: 1;
  visibility: visible;
  left: 0px;
}