#navbar {
    width: 100vw;
    height: 10vh;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color:var(--black);
}

#navbar-items-left{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    height: 10vh;
}

#navbar-items-left img {
    width: 48px;
    height: 48px;
}

#navbar-items-left img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

#navbar-items-left a {
    height: 10vh;
    display: flex;
    align-items: center;
    font-family: "teko",sans-serif;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
}

#navbar-items-left a:hover {
  color: var(--orange);
}

#navbar-items-right{
    color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
}

#navbar-items-right span {
    font-family: "Open Sans",sans-serif;
    color: var(--white);
    font-size: 14px;
}
    

#navbar-items-right i {
    color: var(--white);
    font-size: 25px;
    padding: 25px;
}

#navbar-items-right i:hover {
    color: var(--orange);
}

#auth-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}