#navbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    background-color: var(--black);
    font-weight: 700;
    font-size: 11px;
}

.navItem{
    background-color: var(--grey);
    width: 18vw;
    height: 50px;
    margin: 15px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.activeNavItem{
    background-color: var(--orange);
    color: var(--black);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
}


@media only screen and (min-width: 800px) {
    #navbar{
        display: flex;
        flex-direction: column;
        width: auto;
        font-size: 16px;
        width: 180px;
    }

    .navItem{
        width: 150px;
        height: 75px;
        margin: 15px;
    }

    .navItem:hover{
        cursor: pointer;
        background-color: #393E41;
        color: var(--grey);
        box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.5);
    }
    
    .activeNavItem:hover{
        background-color: var(--orange);
        color: var(--black);
    }
}