body , html {
  padding: 0; margin: 0;

  background : url("img/gazon.jpg") repeat ;
  overflow: hidden;
  max-width: 2000px;
  min-width: 1000px;
}
.menu-btn{
  border:2px solid green ;
  background-color: #ffffff;
  border-radius: 5px;
  display: block;
  width:335px;
  height: 40px;
  margin: 0 auto;
  margin-top: 30px;
  transition: background-color 1s;
}
.menu-btn:hover{
  background-color: green;
  color: white;

}
.chicken-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.chicken {
  height: 100px;
  width : 100px;
}
#game-screen{
  height: 582px;
}


.bag-div{
  position:absolute;
  height: 150px;
  left: 0;right: 0;
  bottom : 0;
}
.bag{
  position: absolute;
  width: 150px;
  height: 100%;
}
.egg{
  width : 50px;
  height: 50px;
  position: absolute ;
  transition:all 500ms;
}
#game-over{
  background-color:white;
  text-align: center;
  height: 25px;
}
#how-to-play{
  background-color: white ;
  text-align: center;
  height: 25px;
}
#score-board{
  background:white;
}
#logo{
  color:#ffffff;
  text-align: center;
}
.crushedEgg {
  width: 150px;
  height: 150px;
  position: absolute ;
  z-index: 0;
}