Aprende el Modelo de Cajas de CSS construyendo una pintura de Rothko - Paso 11

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.no comprendo como anidar el elemento canvas

Tu código hasta el momento

/* file: styles.css */
.canvas {
  width: 500px;
  height: 600px;
  background-color: #4d0f00;
}
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Rothko Painting</title>
    <link href="./styles.css" rel="stylesheet">
  </head>
  <body>

<!-- User Editable Region -->


    <div class="canvas">
     <div><canvas class="frame">
    </div>


<!-- User Editable Region -->

  </body>

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

Desafío: Aprende el Modelo de Cajas de CSS construyendo una pintura de Rothko - Paso 11

Enlaza al desafío:

This is the starting HTML:

    <div class="canvas">
    </div>

You don’t want to change that. You just want to add the new div around it.