#link{
  display: flex;
  color: white;
  align-items: center;

}

#link li a{
  text-decoration: none;
  color: white;
}

body{
  background-color: red;
}

#icon{
  display: none;
}

@media (max-width: 990px) {
  /* #link{
    display: none;
  } */

  #link{
    width: 100%;
    text-align: center;
    display: flex;
    gap: 10;
    flex-direction: column;
    position: fixed;
    top: 12%;
  
  }
  

  #icon{
    display: block;
    font-size: 30px;
    background-color: gray;
    padding: 10px;
    border-radius: 10px;
  }
  
}