body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #222;
}

.menu-button {
  position: fixed;
  top: 20px;
  left: -50px; /* 初始隐藏 */
  width: 40px;
  height: 40px;
  background-color: #444;
  color: white;
  border-radius:5px; 
}

.sidebar {
   position:absolute; 
   left:-250px; /* 初始隐藏 */
   width :200 px ;  
   height :100%;  
   background-color:#333 ;
   color:white ;
}
.sidebar h2{
     padding-left :10 px ;   
}
.layer {
      position:absolute ;    
      top :0 ;
      left :0 ;
      right :0 ;
      bottom :0 ;     
      background-size:auto cover ;    
} 

.content {      
     overflow-y:auto;       
     height：100vh；     
}  

#readme-content{         
       padding：20 px；        
       color:white；          
}
