.menubox{
    display: grid;
    position: absolute;
    left:0px;
    top:0px;
    width: 100%;
    height: 200px;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,50px);
    gap:1px;
   
    
}

canvas{
    border-radius: 5px;
}

.menu{
    display: block;
    position: absolute;
    left:850px;
    top:0px;
    width: 150px;
    height: 800px;
    background-color:black;
    border-radius: 5px;
    
}

.red{
  -webkit-appearance: none;  /* Override default CSS styles */
  
  width: calc(100% - 80px); /* Full-width */
  height: 4px; /* Specified height */
  background-image: linear-gradient(90deg,black,red);  
}


.blue{
    -webkit-appearance: none;  /* Override default CSS styles */
    
    width: calc(100% - 80px); /* Full-width */
    height: 4px; /* Specified height */
    background-image: linear-gradient(90deg,black,blue);  
}

.green{
    -webkit-appearance: none;  /* Override default CSS styles */
    
    width: calc(100% - 80px); /* Full-width */
    height: 4px; /* Specified height */
    background-image: linear-gradient(90deg,black,green);  
  }

  body{
      color: white;
      font-family: sans-serif;
      background-color: rgb(30,30,30);
  }