a {
    color: #fff;
    text-decoration: none;
}

#webNavMenu {
    display: none;
    justify-content: center;
    height: 70px;
    margin: 0 5% 1%;
    padding: 0;
    background-color: #303073;
    border-top: 5px solid #104;
    border-bottom: 5px solid #104;
    border-radius: 0 0 20px 20px;

}
#webNavMenu div {
    display: flex;
    flex-basis: 100%;
    justify-content: center;
}
#webNavMenu ul {
    flex-basis: 100%;
    display: flex;
    justify-content: space-around;
    flex-flow: row nowrap;
    align-items: center;
    padding: 0;
    margin: 0;
}
#webNavMenu ul .unactiveLink {
    flex-basis: 15%;
    list-style: none;
    background-color: #f8960E;
    padding: 10px 0;
    border-radius: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.5vmax;
    font-weight: 700;
}
#webNavMenu ul .unactiveLink:hover {
    background-color: #ffbc40;
}
.activeLink {
    flex-basis: 15%;
    list-style: none;
    background-color: #ffbc40;
    padding: 10px 0;
    border-radius: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.5vmax;
    font-weight: 900;
}