
#fruitStand{
  margin: center;

  position:relative;
  display: flex;
  height: 400px;
  width: 460px;
  border: 1px solid black;
  background: sienna;
  left: 50px;
}
.bin{
  background: #472513;
}

#banana,#apple,#orange{
  line-height: 0;
  -webkit-column-count: 4;
  -webkit-column-gap:   0px;
  -moz-column-count:    4;
  -moz-column-gap:      0px;
  column-count:         4;
  column-gap:           0px; 
  
  height:380px;  
  width:133px;
  margin:10px;  
  border:1px solid black;
  align-items:center;
}

#appleBase, #bananaBase, #orangeBase{
  display:none;
}
  
.button {
  background-color: #bf456c;
  border: none;
  color: white;
  padding: 15px 32px;
  font-size: 16px;
  border-radius:.5em;
}
#controls{
  margin: auto;
  width: 50%;
  border: 2px solid black;
  border-radius:1em;
  padding: 10px;
  text-align:center;
  background-color:lightgrey;
  font-family:sans-serif;
}
#title{
  text-align:center;
  font-family:sans-serif;
  margin-top:5%;
  color:brown; 
}
body{
  margin:0;
  padding:0;
  background-color:lightblue;
}