/* General body styling */
body {
    font-family: helvetica, arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Navbar container */
nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex end;
    align-items:center;
}

nav {
    background-color: rgb(255, 255, 255);
    box-shadow: 3px 3px 5px rgba(255, 255, 255, 0.515);
}
.nav{
    height: 80px;
}

nav li{
    height: 80px;
}

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

nav a:hover{
    background-color:rgb(218, 218, 218);

}

nav li:nth-child(1){
    margin-right:auto;
}

.sidebar {
    position:fixed;
    top: 0;
    right: 0;
    height: 100vh;
    max-width: 450px;
    z-index: 999;
    background-color: rgba(240, 248, 255, 0.316);
    backdrop-filter: blur(10px);
    box-shadow: rgba(255, 228, 228, 0.5);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100vh;
}
.logo a{
    padding:0%;
}
.menubtn{
    margin-left: auto;
}
@media(max-width: 1298px){
    .nav_element{
        display: none;
    }
}
@media(max-width: 570px){
    .logo{
        display: none;
    }
}
@media(max-width: 400px){
    .sidebar{
        max-width: 100%;
    }
}