/*width: 600:400 height:700*/
.left_burger {
    display: none;
      margin-top: 17px;
  }

@media screen and (max-width: 600px) {
    .not_burger {
        
    }

    .lents {
        top: 7em;
        left: 5em;

    }

    .left_panel {
        /*border*/
      z-index: 2;
      overflow: hidden;
        border: none;
background-color: #292929;
    }

    .display_element h2 {
        font-size: 50px;
        left: 200px;
        transform: translate(-50%);
    }

    .left_burger {
        display: grid;
        position: relative;
        z-index: 10;
    }

    .left_burger span {
        display: flex;
        position: relative;
        background-color: rgb(183, 202, 202);
        width: 35px;
        height: 7px;
        margin-top: 8px;
        margin-left: 17px;
        padding-left: 20px;
    }
}



