html,
body {
  margin: 0px;
  font-family: sans-serif;
  background-color: rgb(121, 224, 140);
}
svg * {
  fill: blue;
}

#main {
  width: 100%;
}

#title {
  height: 30px;
  background-color: rgb(121, 224, 140);
  color: white;
  text-align: center;
}

#canvas {
  height: 52%;
  background-color: rgb(255, 255, 255);
  padding: 2%;
}

#controls {
  overflow: auto;
  background-color: rgb(121, 224, 140);
  padding: 2%;
  text-align: center;
}

#table {
  height: 400px;
  width: 600px;
  margin: auto;
  background-color: rgb(255, 255, 255);
  /* border: 1% : */
  padding: 2%;
}

.control {
  height: 100px;
  width: 100px;
  margin: 10px;
  background-color: white;
  display: inline-block;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.control:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

svg {
  background-color: whitesmoke;
}
