.navbar-container {
    background-color: #007bff;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    font-size: min(2em, 10vw);
    font-weight: bold;
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar {
    width: var(--global-screen-width);
    max-width: var(--global-screen-max-width);
    box-sizing: border-box;
    padding: 0px 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    height: 80%;
}

.navbar li {
    margin-left: min(20px, 3vw);
    font-size: min(1em, 3.5vw);
    display: flex;
    align-items: center;
    text-align: center;
    padding-left: 0px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 1em;
}

.navbar a:hover {
    text-decoration: underline;
}

.hamburger {
    display: none;
}

.footer {
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top-section {
    height: 180px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.footer-top-section-inner {
    height: 100%;
    width: 70%;
    max-width: var(--global-screen-max-width);
    display: flex;
    justify-content: space-between;
}

.footer-links-left-section {
    padding: 10px 40px;
}

.footer-links-right-section {
    height: 100%;
    padding: 12px;
    color: rgba(255,255,255,0.7);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 200px;
    font-size: 14px;
}

.footer-bottom-section {
    height: 36px;
    width: 70%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-links-right-section a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    cursor: pointer;
}

.footer-links-right-section a:hover {
    color: white;
}