* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: grey;
}

nav {
  background-color: white;
  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 {
  height: 50px;
}

nav a {
  height: 100%;
  padding: 0 15px;
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
}

nav a:hover{
  background-color: #f0f0f0;
}

nav li:first-child{
  margin-right: auto;
}

.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.264);
  backdrop-filter: blur(8px);
  box-shadow: 3px 3px 5px 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%;
  color: white;
}

.sidebar a:hover{
  color: black;
}

@media(max-width: 500px){
.hideOnMobile{
  display: none;
}
}

@media(min-width: 500px){
  .hideOnLaptop{
    display:none;
  }
}