.navbar
{
    background-color: var(--bg-2);
    width: 100vw;
    height: 6vh;
    min-height: 37px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a
{
    text-decoration: none;
    font-size: 30px;
    color: var(--second-text-color);
    font-weight: 800;
    margin-left: 1vw;
}

.navbar a:hover
{
    text-decoration: none;
    font-size: 30px;
    color: var(--text-color);
    text-decoration: underline;
}

.navbar-logo
{
    width: 4vw;
    height: 4.5vw;
}

.navbar-logo
{
    width: 4vw;
    height: 4.5vw;
    cursor: pointer;
}

.navbar-profile
{
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin: 0 1vw 0 1vw;
    max-width: 20vw;
    max-height: 20vw;
    border: 3px solid var(--bg-2);
}

.navbar-profile:hover
{
    border: 3px solid var(--bg-3);
    cursor: pointer;
}

.navbar button
{
    border-radius: 10px;
    width: 12vw;
    height: 3vh;
    border: 2px solid var(--primary);
    background-color: #ffffff00;
    margin: 0 1vw 0 0;
    max-width: 150px;
    min-height: 24px;
}

.navbar button:hover
{
    background-color: var(--primary);
    cursor: pointer;
}

.navbar button:active
{
    transform: translateY(2px);
    cursor: pointer;
}

.navbar-dropdown
{
    display: none;
    flex-direction: column;
    background-color: var(--bg-3);
    height: fit-content;
    width: fit-content;
    padding: 1vh 1vw 1vh 1vw;
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: var(--text-color);
    position: absolute;
    right: 0;
    margin: 1vh 1vw 0 0;

}

.navbar-dropdown li
{
    padding: 1vh 0 0.5vh 0;
    text-align: center;
    list-style-type: none;
}

.navbar-dropdown li:hover
{
    cursor: pointer;
    background-color: var(--secondary);
    border-radius: 5px;
}

#toggle_btn
{
    display: none;
}

/* @media(max-width: 800px)
{
    .navbar button
    {
        display: none;
    }
    label[for="toggle_btn"]
    {
        display: block;
    }
} */