* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #222222;
}

body {
    font-family: body;
    color: #ffffff;
    font-size: 15px;
}

.desktop {
    max-width: 640px;
}

nav {
    background-color: #222222;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: sticky;
}


nav ul, nav li {
    margin: 0;
    padding: 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    flex-grow: 1;
}

nav li {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 4px;
}

nav li a {
    display: flex;
    justify-content: center;
    height: 100%;
    padding: 0px 4px;
    margin: 0px;
    
    border-radius: 4px;
    border: 2px solid #00000000;
    color: #ffffff;
    
    text-decoration: none;
    font-weight: bold;
}

nav li a:hover {
    bordeR: 2px solid #226699;
    color: #ffffff;
}

nav li a p {
    pointer-events: none;
    font-size: 1.0rem;
}

.nav-anchor-active, .nav-anchor-active:hover {
    border: 2px solid #226699;
    color: #ffffff;
    background-color: #226699;
}


header {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 256px;
    background-color: #888888;
    background-image: url("../data/header_image.jpg");
    background-position: center center;
    background-blend-mode: multiply;
}

main {
    margin: auto;
}

section {
    margin: 16px;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #efefef;
    margin-top: 32px;
}

footer p {
    color: #222222;
    flex: 100%;
    margin-left: 32px;
    margin-right: 32px;
}

#footer-content-wrap {
    margin: auto;
    display: flex;
    flex-direction: column;
    margin: 32px;
}

#footer-logos {
    margin: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#footer-logos img {
    max-height: 48px;
    max-width: 128px;
}

#company-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
}

#company-info p {
    text-align: center;
    text-wrap: nowrap;
}

