.au-menu-bar-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background: #ffe710;
    margin-top: -5px;
    margin-bottom: 40px;
}

.au-menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 52px;
    width: 250px;
}

.au-menu-bar-container a {
    text-decoration: none;
    color: #008dff;
    font-family: 'Rubik', sans-serif;
    font-size: 12pt;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.au-menu-bar-container a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 800px) {
    .au-menu-bar-container {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
}