#main{
   grid-area: main;
   display: grid;   /*позиционирование сеткой уровня блоков*/
   grid-template-rows: 5% auto 2%;
   /*grid-template-columns: auto 60em auto;*/
   /*background: rgba(250, 250, 250, 1);*/
   height: 100%;
   width: 100vw;
   z-index: 1;
}
   #header{
   
   }
   #desk{
      display: grid;
      grid-template-columns: auto 250pt;
   }
      #project{
         display: grid;
         grid-template-areas: "graph";
         background: rgba(250, 250, 250, 1);
         border: 7px inset rgba(190, 190, 190, 1);
         overflow: auto;
      }
         #E2{
            background: rgba(200, 200, 200, 1);
         }
      #settings{
         display: grid;
         grid-template-rows: 15pt auto;
         background: rgba(230, 230, 230, 1);
      }
         #tittleSetting{
            display: grid;
            grid-template-areas: "free"
                                 "text"
                                 "free";
            /*text-align: center;*/
            color: white;
            background: rgba(0, 0, 250, 1);
         }
            #tittleSetting b{
               grid-area: text;
            }
         #mainSetting{
            border: 7px inset rgba(190, 190, 190, 1);
         }
   #footer{
   
   }
