.navbar {
    display: flex;
    justify-content: center; /* center contents inside navbar */
    align-items: center;
    padding: 1em;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    font-size: 11px;
    width: 100%;
}

.navbar a {
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
}

.navbar nav.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.navbar nav.links a {
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
    margin: 0 .25rem;
}

.navbar nav.links a:hover {
    text-decoration: underline;
}