#eggSmall {
  aspect-ratio: 3 / 4;
  border-radius: 100% / 125% 125% 80% 80%;
  width: 20px;
  background: #fca;
  /* animation: shake 1.0s infinite; */
  animation: shakeAndGrow 2s infinite alternate;
}

#egg {
  aspect-ratio: 3 / 4;
  border-radius: 100% / 125% 125% 80% 80%;
  width: 200px;
  background: #fca;
  animation: shake 1s infinite ease-in-out;
}

#eggAnimationContainer {
  flex-direction: column;
}

ul.egg-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

ul.egg-list li {
  position: relative;
  padding-left: 32px; /* Abstand für das Ei */
}

ul.egg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.1em; /* je nach Schrift ggf. anpassen */
  width: 20px;
  aspect-ratio: 3 / 4;
  border-radius: 100% / 125% 125% 80% 80%;
  background: #fca;
  /* animation: shakeAndGrow 2s infinite alternate; */
}
