/*body {
	background: #cccccc;
}
*/
/* do NOT modify the canvas */

.canvas {
	width: 900px;
	height: 556px;
	/*margin: 100px auto;*/
	background: white;
	position: relative;
}

/* modify the assets below */

#square {
	width: 100px;
	height: 200px;
	background: linear-gradient(to right, rgba(164,179,87,1) 0%, rgba(117,137,12,1) 100%);
	top: 300px;
	left: 400px;
	position: absolute;
	border-radius:20px;
}

#triangle {
	width: 0;
	height: 0;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-bottom: 200px solid yellow;
	position: absolute;
	top: 120px;
	left: 350px;
	transform: rotate(180deg);
}

#flower {clip-path: polygon(36% 25%,80% 0%, 100%, 0% 100%);
	color: green;
	position: absolute;

}

#square {
	width: 100px;
	height: 200px;
	background: linear-gradient(to right, rgba(164,179,87,1) 0%, rgba(117,137,12,1) 100%);
	top: 300px;
	left: 400px;
	position: absolute;
	border-radius:20px;
}

#circle {
      width: 100px;
      height: 100px;
     background: linear-gradient(to right, rgba(255,175,75,1) 0%, rgba(255,175,75,0.97) 8%, rgba(255,175,75,0.61) 96%, rgba(255,146,10,0.59) 100%);
      border-radius: 50%;
      top: 450px;
      left: 300px;
      position: absolute;
    }


#circle2 { width: 100px;
      height: 100px;
     background: linear-gradient(to right, rgba(243,226,199,1) 0%, rgba(182,141,76,1) 51%, rgba(233,212,179,1) 100%);
      border-radius: 50%;
      top: 350px;
      left: 500px;
      position: absolute;
}
  

#oval {width: 200px;
      height: 100px;
     background: linear-gradient(to right, rgba(252,234,187,1) 0%, rgba(252,205,77,1) 40%, rgba(248,181,0,1) 51%, rgba(251,223,147,1) 100%);
      border-radius: 50%;
      top: 300px;
      left: 300px;
      position: absolute;}

  .canvas:hover {
  	background-color: green;
  	}

  	#circle2:hover { 
  	background-color: orange }
  }
