
#navbar{
    /* background-color: #fafafc; */
    top: 0;
    left: 0;;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 10vh;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
    z-index: 10;
    backdrop-filter: blur(10px);
    background-color: rgba(200,100,200,0.05);
}

#logo-text{
    min-width: 5cm;
    max-width: 20vw;
    margin-left: 5vw;
    transition: 1s all;
    max-height: 100%;
    object-fit: contain;
}

.lang-icon{
    width: 5vw;
}

a{
    text-decoration: none;
}

.parsec-font {
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.nav-button{
    height: 100%;
    transition: all 0.3s ease-in-out;
    color: #f8fafc;
    text-align: center;
    align-content: center;
    padding-left: 1%;
    padding-right: 1%;
    flex-grow: 2;
}


.nav-button:hover{
    /* background-color: #f8fafca6;
    color: rgba(0, 0, 0, 0.8); */
    text-decoration: underline;
}

#hamburger {
    display: none;
    padding-right: 5vw;
    padding-top: 1vh;
}

.bar {
    display: block;
    width: 6vw;
    height: 0.5vh;
    margin: 0.5vh auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #f8fafc;
}

#navigation{
    display: flex;
    width: 75%;
    height: 100%;
    justify-content: space-between;
}

#nav-menu{
    display: flex;
    width: 40%;
    flex-grow: 100;
    justify-content: flex-end;
}

 @media only screen and (max-width: 1070px) {
    #navigation {
        position: fixed;
        right: -100%;
        top: 7vh;
        flex-direction: column;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        height: 94vh;
        width: 60vw;
        display: none;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        background-color: rgba(200, 200, 150, 0.05);
        transition: all 0.5s ease-in-out;
    }

    #navbar{
    position: sticky;
    }
        
    #navigation.active {
        right: 0;
        transition: 0.3s;
        display: flex;
    }

    /* #logo-text.active{
        position: absolute;
        transform: rotate(-90deg) scale(2) translateX(-15vh);
        transform-origin: 75% 50%;
    } */

    #navbar.active{
        height: 100vh
    }

    .nav-button{
        font-size: 5vh;
    }

    #hamburger {
        display: block;
        cursor: pointer;
    }

    
    .lang-icon{
        width: 50vw;
    }
 }