#headerbackground {
    width: 100%;
    height: 119px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #181818;
    position: fixed;
    z-index: 10000;
}

#navbar {
    width: 100%;
    max-width: 1097px;
    height: 119px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbarlogo {
    margin-bottom: 6px;
}

.navbarmenu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    max-width: 394px;
}

.navbarmenu a{
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.navbarbutton {
    background-color: black;
    border: 1px solid white;
    padding: 18px 47px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: white;
    transition-property: all;
    transition-duration: 0.5s;
} 

.buttoncontainer {
    display: flex;
    align-items: center;
}

.menu-hamb {
    display: none;
}

.onetwotree {
    transform: rotate(180deg);
}

.one {
    background-color: #ffffff;
    height: 3px;
    width: 12px;
    margin-bottom: 6px;
}

.two {
    background-color: #ffffff;
    height: 3px;
    width: 20px;
    margin-bottom: 6px;
}

.tree{
    background-color: #ffffff;
    height: 3px;
    width: 28px;
}