* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  background: url("Images/cute3-8373651_1200.png");
  background-position: 60% 50%;
  background-repeat: no-repeat;
  background-color: bisque;
  overflow: hidden;
}

#egg {
  position: absolute;
  top: 22.4%;
  left: 63.8%;
  width: 30px;
  height: 50px;
  transform: rotate(-40deg);
  animation: eggFall 3s 6s linear forwards;
}

@keyframes eggFall {
  0% {
    top: 22.4%;
    left: 63.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-40deg);
  }
  20% {
    top: 57.4%;
    left: 63.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-180deg);
  }
  30% {
    top: 58.9%;
    left: 63.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-250deg);
  }
  35% {
    top: 58.9%;
    left: 63.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-280deg);
  }
  40% {
    top: 58.9%;
    left: 63.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-220deg);
  }
  45% {
    top: 58.9%;
    left: 63.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-130deg);
  }
  50% {
    top: 78.9%;
    left: 62.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-130deg);
  }
  55% {
    top: 87.3%;
    left: 62.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-190deg);
  }
  100% {
    top: 87.3%;
    left: 62.8%;
    width: 30px;
    height: 50px;
    transform: rotate(-190deg);
  }
}
#chick {
  position: absolute;
  top: -9%;
  left: 0%;
  width: 90px;
  height: 100px;
  transform: rotate(30deg);
  animation: accident 5s 1s ease-in-out forwards;
}

@keyframes accident {
  0% {
    top: -9%;
    left: 0%;
    width: 90px;
    height: 100px;
    transform: rotate(30deg);
  }
  10% {
    top: 0%;
    left: 0%;
    width: 290px;
    height: 300px;
    transform: rotate(30deg);
  }
  20% {
    top: 30%;
    left: 10%;
    width: 290px;
    height: 300px;
    transform: rotate(30deg);
  }
  30% {
    top: 30%;
    left: 10%;
    width: 290px;
    height: 300px;
    transform: rotate(-30deg);
  }
  40% {
    top: 40%;
    left: 20%;
    width: 290px;
    height: 300px;
    transform: rotate(-20deg);
  }
  55% {
    top: 41%;
    left: 30%;
    width: 290px;
    height: 300px;
    transform: rotate(10deg);
  }
  65% {
    top: 41%;
    left: 30%;
    width: 290px;
    height: 300px;
    transform: rotate(10deg);
  }
  80% {
    top: 17.5%;
    left: 61%;
    width: 60px;
    height: 100px;
    transform: rotate(30deg);
  }
  90% {
    top: 17%;
    left: 61.3%;
    width: 60px;
    height: 100px;
    transform: rotate(15deg);
  }
  100% {
    top: 17%;
    left: 61.3%;
    width: 60px;
    height: 100px;
    transform: rotate(25deg);
  }
}
#chick2 {
  position: absolute;
  top: 83%;
  left: 60%;
  width: 270px;
  height: 320px;
  transform: rotate(0deg);
  animation: flyUp 5s 7.5s ease-in-out forwards;
}
@keyframes flyUp {
  0% {
    top: 83%;
    left: 60%;
    width: 270px;
    height: 320px;
    transform: rotate(0deg);
  }
  /* 20% {
    top: 43%;
    left: 50%;
    width: 270px;
    height: 320px;
    transform: rotate(-25deg) scale(10);
  } */
  30% {
    top: 33%;
    left: 40%;
    width: 270px;
    height: 320px;
    transform: rotate(-25deg) scale(22);
  }
  100% {
    top: 33%;
    left: 40%;
    width: 270px;
    height: 320px;
    transform: rotate(-25deg) scale(22);
  }
}

#egg2 {
  position: absolute;
  top: -85%;
  left: 0%;
  width: 1000px;
  height: 800px;
  animation: flowDown 6s 9s ease-in-out forwards;
}
@keyframes flowDown {
  0% {
    top: -85%;
    left: 0%;
    width: 1000px;
    height: 800px;
  }
  /* 50% {
    top: 0%;
    left: 5%;
    width: 1000px;
    height: 800px;
  } */
  100% {
    top: 10%;
    left: 7.5%;
    width: 1200px;
    height: 1400px;
  }
}
.sorry {
  position: absolute;
  top: 60.6%;
  left: 22%;
  padding: 10% 5%;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: white;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: rgb(225, 178, 25);
  width: 470px;
  height: 200px;
  transform: scale(0.01);
  animation: sorryText 3s 17s linear forwards;
}
@keyframes sorryText {
  from {
    top: 60.6%;
    left: 22%;
    padding: 10% 5%;
    width: 470px;
    height: 200px;
    transform: scale(0.01);
  }
  to {
    top: 60.6%;
    left: 22%;
    padding: 10% 5%;
    width: 470px;
    height: 200px;
    transform: scale(1);
  }
}
.sorry a {
  text-decoration: none;
  font-size: 1.5rem;
  color: yellow;
}
