/* Override Reboot’s default “link-blue” on inputs/buttons */
input[type="button"],
input[type="submit"],
button {
    /* your brand styling: */
    color: black; /* or `inherit` if you want text color */
    cursor: pointer;
}

@media screen and (min-width: 980px) {
    #navbar-container {
        display: flex;
        width: 100%;
        justify-content: center;
        /* background: red; */
        position: relative;
        z-index: 0;
    }

    #navbar-list-container {
        display: flex;
        justify-content: space-around;
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    /* sticky navbar text & icon color */
    #navbar-container {
        background-color: white;
        border-bottom: 2px solid var(--primary-saffron);
    }

    #navbar-container div ul li a {
        color: var(--color-text);
    }
}
