html, body {
    font-family: "Barlow", "Arial", sans-serif;
    font-weight: 300;
}

p, th, td, cite {
    line-height: 1.5;
}

a, a:active, a:visited {
    color: black;
    text-decoration: none;
    padding: .25rem;
}

a:focus-visible {
    border: #0060cc;
}

a:hover {
    color: #999997;
}

nav ul {
    display: flex;
    gap: clamp(1.25rem, 3vw, 3rem);
    align-items: center;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    flex-wrap: wrap;
}

nav img {
    max-width: 300px;
    margin: auto;
    display: block;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-wrapper header {
    padding-top: 1rem;
}

.site-wrapper main {
    flex-grow: 1;
}

.card-container {
    width: 100%;
    margin: 1rem auto;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner {
    background-image: url("../images/banner.png");
    background-size: cover;
    height: 100px;
    display: flex;
    align-items: center;
    background-position: 30% center;
    color: white;
    margin: 0;
    font-size: clamp(1.5em, 3vw, 2em);
    padding-left: calc((100% - min(95%, 1900px)) / 2 + 1rem);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 5rem;
    margin: 1rem auto;
    max-width: min(95%, 1900px);
    padding: 0 1rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 900px) {
    .section-grid {
        grid-template-columns: 1fr 1fr;
    }
}

footer {
    background-color: #252525;
    line-height: 1rem;
    text-align: center;
    padding: 1rem;
    color: #eee;
}

footer a {
    margin: 0 1rem;
    display: block;
    color: white;
    font-weight: bold;
}

footer address {
    font-style: normal;
}