#navbar {
    height: 15vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


#navbar-logo {
    margin-left: 5vw;
}

#navbar-logo p{
    font-family: 'Playfair', sans-serif;
    font-size: 70px;
    color: rgb(255, 245, 245);
}


#navbar-hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 15vw;
    max-width: 60px;
    height: 40%;
    cursor: pointer;
    margin-right: 5vw;
    position: relative;
}

.navbar-hamburger-menu-line {
    height: 20%;
    width: 100%;
    background-color: rgb(35, 35, 35);
}

#navbar-dropdown-menu {
    display: none;
    position: absolute;
    top: 15vh; 
    right: 0;
    background-color: rgb(255, 250, 250);
    flex-direction: column;
    gap: 1vh;
    padding: 2vh;
    padding-right: 5vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.navbar-dropdown-item {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1vh 0;
    cursor: pointer;
    text-align: right;
    color: rgb(35, 35, 35);
}