nav{
    background-color: rgba(13, 61, 15, 0.24);
    backdrop-filter: blur(10px);
    box-shadow: 0.3vw 0.3vw 0.5vw rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content:space-between;   
    align-items: center;
    padding: 0;
    position: fixed;
    width: 100%;
    height: 3.66vw;
    max-width: 100%;
    z-index: 1000;
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    
}
nav li{
    height: 3.9vh;
    align-items: center;
    margin-right: 2.2vw;
    font-size:  calc(1.7 * (1vw + 1vh)/2);
}

nav a{
    height: 100%;
    padding: 0.65vh 0.73vw;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    
    transition: all 0.15s;
}
nav h1 a:hover{
    background-color: transparent;
}
nav a:hover {
    background-color: #518b438f;
    border-radius: 0.5em;
}

nav h1{
    font-size:  calc(2 * (1vw + 1vh)/2);
    color: white;
    font-family: 'Times New Roman', Times, serif;
    margin: auto;
    align-items: center;
}
.sidebar{
    position: fixed;
    top: 0;
    right:0;
    height: 100vh;
    width: 18.3vw;
    z-index: 999;
    background-color: #507a3c7e;
    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%;
    margin-top: 10px;
}
.sidebar a{
    width: 100%;
}
nav svg{
    fill: white;
}
.menu_button{
    display: none;
}
@media (max-width: 800px) {
    .hideOnMobile{
        display: none;
    }
    .menu_button{
        display: block;
    }
}
@media (max-width: 400px){
    .sidebar{
        width: 100%;
    }
}