body{ 
  margin: 3vmin;
  background-color: rgba(82,82,82,.74);
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: white;
  padding: 5px 25px;
}


#menu{ 
  width: 100%;
    max-width: 400px;
    margin: 0 auto; 
    text-align: center;
    padding-top: 5px;
    padding-bottom: 30px;
 }

  ul{ 
  list-style: none; 
  padding-left: 0;
  padding-top: 20px;
 }
 ul li{
  display: inline-block; 
  padding: 5px;
  background-color: #eee;
  margin-right: 10px;
  border: solid 1px grey;
  box-shadow: 1px 1px 5px black;
  border-radius: 5px;
  margin-bottom: 10px;
 }
 ul li a{
  text-decoration: none;
  color: black;
 }




#canvas{
  background-color: #eBdccc;
  position: relative;
  margin: 0 auto;
  width: 400px; 
  height: 600px;
}

#blacksquare{
    background-color: black;
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: 340px;
    right: 20px;
}

#orangesquare{
    background-color: #f67845;
    position: absolute;
    width: 180px;
    height: 180px;
    top: 300px;
    right: 20px;
}

#bluesquare{
    background-color: #69acd9;
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: 300px;
    left: 20px;
}

#greensquare{
    background-color: #17a958;
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: 120px;
    left: 20px;
}



