.navbar {
    position: fixed;
    width: 100%;
    height: 10vh;

    z-index: 100;
    box-shadow: 0em 0.001em 1em 0.001em black;

    background-color: #FEFEFE;
}

.navitems {
    position: inherit;
    width: inherit;
    height: inherit;
    display: grid;
}

.navbuttons {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-right: 5%;
    gap: 10%;
}

.logo {
    position: inherit;
    width: auto;
    height: inherit;
}

.hamburguer_container {
    display: none;
}

.menu_panel {
    display: none;
    position: absolute;
    flex-direction: column;

    align-items: center;
    justify-self: right;
    
    background-color: white;
    max-height: 0;
    overflow: hidden;
    padding: 2%;
    margin-top: 10vh;

    transition: max-height 0.2s ease-out;
}

@media screen and (max-width: 768px) {
    .navbuttons {
        display: none;
    }

    .hamburguer_container {
        display: flex;
        flex-direction: column;

        justify-self: flex-end;
        align-self: center;
        justify-content: space-evenly;

        height: 75%;
        padding: 0 2%;
        aspect-ratio: 1/1;
        /* padding: 0 2%; */
    }

    .hamburguer {
        background-color: #d6d6d6;
        width: 75%;
        height: 10%;
    }
}