body {
    font-family: sans-serif;
    background-color: #bbbbbb;
}

a {
    color: #184483;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content {
    border: 1px solid #aaaaaa;
    background-color: white;
    padding: 2rem;
    font-size: 12px;
    margin-bottom: 1rem;
}

.main-content > h1:first-child,
.main-content > h2:first-child,
.main-content > h3:first-child,
.main-content > h4:first-child{
    margin-top: 0;
}

.banner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    background: #184483;
    padding: 0.5rem;
    gap: 1rem;
    width: 100%;
}

.banner-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.menu {
    font-size: 12px;
    font-weight: bold;
    padding: 0.5rem;
}

.menu > table {
    border: none;
    white-space: nowrap;
}

.footer {
    padding: 1rem;
    background: whitesmoke;
    border: 1px solid #aaaaaa;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 12px;
    width: fit-content;
}

/** Navbar */
.top-navbar {
    background: #103c7a;
    margin-bottom: 0;
}
.bottom-navbar {
    background: #0f366e;
    margin-bottom: 1rem;
}

.top-navbar,
.bottom-navbar {
    min-height: unset;
    border: none;
    border-radius: 0;
    width: 100%;
}

.top-navbar .nav > li > a,
.bottom-navbar .nav > li > a {
    padding: 8px 15px;
}

.navbar-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.top-navbar .navbar-collapse.collapse {
    display: block!important;
}

.top-navbar .navbar-nav>li, .navbar-nav {
    float: left !important;
}

.top-navbar .navbar-nav.navbar-right:last-child {
    margin-right: -15px !important;
}

.top-navbar .navbar-right {
    float: right!important;
}

.navbar-default .navbar-nav > .active > a {
    background: rgba(0, 0, 0, 0.25);
}

.navbar-default .navbar-nav > .active > a:hover {
    background: rgba(0, 0, 0, 0.35);
}

.navbar-default .navbar-nav > li > a,
.navbar-default .navbar-nav > li.active > a
{
    color: whitesmoke;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > li > a:focus
{
    color: #c9c9c9;
}

@media (max-width: 768px) {
    .banner .banner-title {
        font-size: 16px !important;
    }
}