#menu-hamburguer{
   
    background-color: white;
   
    

}
#menu-burguer{
  display: none;
  color: var(-- hsl(191, 74%, 15%));
  width: 300px;
  filter: drop-shadow(0 0 0.75rem rgb(122, 120, 121));
  background-color: white;


  
  background-attachment: fixed;
  padding: 20px;
  border-radius: 0  20px 0 0;
  position: fixed;
  top: 0;
  /* animation: go-back 1s; */
}


.animation2{
    animation : go-back 1s;
    animation-iteration-count: 1;
  
    
}

.animation1{
   animation : go-back1 1s;
     animation-iteration-count: 1;
  
    
}

@keyframes go-back {
    from {
      transform: translateX(-50px);
    }
    to {
      transform: translateX(0);
    }
  }

  @keyframes go-back1 {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-500px);
      
    }
  }

  #container-burguer ul{
    list-style: none;
    padding-top: 20px;
    text-align: left;
   
  }
  #container-burguer li{
    padding: 10px 0 10px 0;
  }
  #btn-close{
    background-color: none;
    border: none;
    font-size: 20px;
    cursor:pointer;
    width: 50px;
    height: 50px;
    
    
  }
  #menuburguerbtn{
    display: flex;
    justify-content: end;
  }