* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.egg {
  width: 500px;
  height: 500px;
  border: 1px solid black;
  margin: 50px auto;
  position: relative;
  transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
}

img {
  width: 100px;
}

.chicken {
  position: absolute;
  top: 0;
}

.basket {
  position: absolute;
  bottom: 0;
}

.lose {
  position: absolute;
  /* top: 0; */
  display: none;
}

button {
  display: block;
  margin: 15px auto;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 20px;
}

p {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-top: 20px;
}

h1 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  /* margin-top: 20px; */
}

.button {
  text-align: center;
  /* margin-top: 35px; */
  display: flex;
}
