How can I get rid of the solid background in an animation

Hello. I am new to Three.js and I am trying to clone this Codepen](https://codepen.io/pizza3/pen/JjKjbZY). In this code the background is solid and ideally I would like the background to be transparent. How would I go about doing that? Thanks

Two steps are needed:

1.: set alpha: true when creating the renderer:

renderer = new THREE.WebGLRenderer( { antialias: true, alpha: true, } );

2.: define a background image in your .css:

`canvas {
  display: block;
  background: url(./Test.jpg) repeat 0 0;
  background-size: auto;
}
`

Depending on how you want to fill the background yourself, you may get away without step 2.

See an example of mine where I show three.js graphics against a copyright screen. More details on the project itself here (also on this forum).