 
html,
body,
.container {
  margin: 0px;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  
}
body {
  background-color: #5e2803; 
}
.wrapper{
  display:block;
  margin: 0;
  width: 800;
  height: 640;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: aqua;
  
}
canvas {
  border: 4px solid orange; 
  box-shadow: 0 0 15px orange, 0 0 30px orange, 0 0 45px orange; /* Glowing effect */
  border-radius: 10px; 
  /* display:block;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}
 