#container {
  position: relative;
  left: 18px;
  top: 12px;
  width: 300px;
  height: 300px;
  background-color: white;
  font-family: sans-serif;
}

.numberBox {
   width: 96px;
   height: 96px;
   margin: 2px;
   border-radius: 4px;
   border: 1px solid #000;
   background-color: blue;
   color: white;
   font-family: Verdana, Geneva, sans-serif;
   font-size: 60px;
   text-align: center;
}

#topCell {
  position:absolute;
  left: 100px;
}

#leftCell {
  position:absolute;
  top: 100px;
 }
#middleCell {
  position:absolute;
  left: 100px;
  top: 100px;
}
#rightCell {
  position:absolute;
  left: 200px;
  top: 100px;
}
#bottomCell {
  position:absolute;
  left: 100px;
  top: 200px;
}

#reset {
  position: absolute;
  top: 300px;
  width: 70px;
  height: 40px;
  background-color: #eee;
  border-radius: 4px;
  border: 1px solid #000;
  font-size: 16px;
  text-align: center;
  padding-top:9px;
}
#reset:hover {
  background-color: #fbfbfb;
}
#feedback {
   position: absolute;
   top:250px;
   left:210px;
   padding-top: 6px;
   font-size: 26px;
}
