#navbar {
    border: 0;
    z-index: 9999;
    background-color: white;
    padding: 0px 0 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
}

.logo {
    display: block;
    height: auto;
    width: 52px;
    padding-top: 5px;
    margin-right: 15px;
    cursor: pointer;
}

#logo-src {
    width: 40%
}

#navbar-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 50px;
}

#navbar-list>li {
    float: left;
    font-size: 14px;
    margin-right: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.5s
}

#navbar-list>li:hover>.nav-label-underline {
    display: block;
}

#navbar-list>li:hover {
    color: rgb(22 176 251);
}

#nav-container {
    display: flex;
    justify-content: space-between;
    /* width: 80%; */
    margin: auto;
    padding-top: 20px;
    max-width: 1100px;
}

.nav-label-underline {
    height: 2px;
    width: 100%;
    background-color: rgb(22 176 251);
    margin-top: -5px;
    display: none;
}

.nav-green-buy-button {
    background-color: #11ae9b;
    padding: 8px 50px 8px 50px;
    border-radius: 30px;
    color: white;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-orange-buy-button {
    background-color: #ff9600;
    padding: 8px 50px 8px 50px;
    border-radius: 30px;
    color: white;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

#menu-button {
    font-size: 36px;
    margin-left: 20px
}

@media only screen and (max-width:900px) {
    #nav-container {
        width: 90%
    }
}