*{
  margin: 0;
  padding: 0;
}
nav{
  background-color: #a17f1a;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  line-height: 80px;
}
nav a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-itens: center;
  color: white;
}
nav a:hover{
  background-color: #f0f0f0f0;
}
nav li:first-child{
  display: block;
  margin-right: auto;
  font-weight: bold;
  font-size: 30px
}
.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width:250px;
  z-index: 999;
  background-color: red;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}

.nav li img{
    height:50px;
}

@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
  nav li:first-child{
    display: block;
    font-size: 25px;
}
@media(max-width: 600px){
  .sidebar{
    width: 100%;
}
nav li:first-child{
  display: block;
  font-size: 30px;

}
