nav{
    background-color: whitesmoke;
    box-shadow:  3px 3px 5px rgba(0, 0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    border-bottom: 5px solid brown;
}
nav img{
    width: auto;
    height: 100%;
}
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 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: brown;
}
nav a:hover{
    background-color: brown;
    color: white;
}


nav li:first-child{
    margin-right:  auto;
}

nav li:first-child a:hover {
    background-color: white;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    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;
}
.login-link{
    color: rgb(76, 76, 205);
}
@media(max-width: 800px){
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
    .login-link{
    color: rgb(35, 1, 1);
}
}

@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}