body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar-container{
    width: 100%;
    background-color: var(--theme-color-navy-standard);
    margin: 0rem 0 2rem;
}

@media screen and (min-width: 600px) {
    .navbar-narrow-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.topnav {
    overflow: hidden;
    background-color: var(--theme-color-navy-standard);
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: var(--theme-color-purple-light);
    color: var(--theme-color-purple-light-xx);
}

.topnav a.active {
    background-color: var(--theme-color-purple-standard);
    color: white;
}

.topnav .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

.bar {
    width: 18px;
    height: 1px;
    background-color: #f2f2f2;
    margin: 4px 0;
}