html, body {
  margin: 0; 
  height: 100%; 
  overflow: hidden;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chickCont{
  width: 3%;
  height: 8%;
}

.chick{
  width: 100%;
  height: 100%;
}

.motherCont{
  width: 12%;
  aspect-ratio: 9/12 ;
}

.mother{
  width: 100%;
  height: 100%;
  /* border: 0.1rem solid blue;   */
}

/* 
  game_canvas is the class name associated with the left area of the documentinstruction1
  background-image sets the source of the image
  background-size sets the size of the image. 
  background-color sets the color of the portion of the screen not covered by the image
  background position set the image to the center
  background-attachment - determines if the image is scrollable
 */
#game_canvas{
  width: 100vw;
  height: 56vw;
  background-image: url('../images/game_environment/scene.svg'); /*set the source for the image*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: skyblue;
}

.container{
  display: flex;
  justify-content: center;
}

#game_operations {
  background-image: url("../images/boulder_and_interface/game_options_interface.svg");
  background-position: top;
  background-size: 45vw 56vw;
  background-repeat: no-repeat;
    width: 27vw;
    height: 56vw;
    position: fixed;
    right: 0px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.top-right {
    width: 80%;
    height: 60%;
    padding-top: 35%;
    padding-left: 6%;
    padding-right: 6%;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bottom-right {
    height: 40%;
    width: 75%;
    padding-bottom: 6%;
}

.bottom-right, .draggable{
  margin-bottom: .5rem;
}

.draggable, .block {
  color: white;
  padding-top: 3%;
  padding-bottom: 3%;
  height: 10%;
  width: 90%;
  cursor: pointer;
  text-align: center;
  border-radius: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 1vw;
}

.move{
  background-color: salmon;
}

.drink {
  background-image: url("../images/game_buttons/drink_button.svg");
}

.eat {
  background-image: url("../images/game_buttons/eat_button.svg");
}

.start{
  background-image: url("../images/game_buttons/start_button.svg");  
}

.run-reset-buttons {
  display: flex;
  gap: 1.5%;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

#block-drop{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  border: 0.1rem solid white;
}

#num-input{
  box-sizing: border-box;
  width: 50%;
  border: none;
  border-radius: 0.2rem;
  padding: 0.2%;
  font-size: 1vw;  
}

.move-select{
  width: 25%;
  border: none;
  border-radius: 0.2rem;  
  padding: 0.1%; 
  font-size: 1vw;   
}

#block-reset{
  background-image: url("../images/game_buttons/refresh_key.svg");  
}

#run{
  background-image: url("../images/game_buttons/play_button.svg"); 
}

#trash{
  background-image: url('../images/game_buttons/trash_can.svg');
  margin-left: auto;
}

#block-reset, #run, #trash{
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 12%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: white;
  padding: 1%;
}

#block-reset:hover, #run:hover{
  background-color:#FFC940;
}

