

canvas {
  width: 100%; 
  height: 100%;    
} 

  /* aca estamos manejando elcuadro de grabacion (no borro xq quiero probar que el canvas funcione sin el) */
  /* .record { 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  } */

  .contain{
    display: flex;
    flex-direction: row;
    border: 2px solid black;
    padding: 10px;
    width: 200px;
    height: 50px;
    overflow: hidden; /* no deja que salga del cuadro */
  }

  .columB{
  display: flex;
  align-items: center;
  justify-content: center;
  
  
  }

  .columC{
    width: 100%; 
    height: 100%;
    flex: 1; 
    
    
  }

