header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    background-color: var(--header-background-color);
    background-image: url(../images/banner.webp);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
    color: white;
    padding: 0 20px;
    margin: auto;
    width: 100%;
    aspect-ratio: 1280/480;
    text-align: center;
}

.pageTitle {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-family: var(--pageTitle-font-family);
    font-weight: var(--pageTitle-font-weight);
    font-size: var(--pageTitle-font-size);
    line-height: 100%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
    text-transform: var(--pageTitle-text-transform);
    letter-spacing: var(--pageTitle-letter-spacing);
    color: white;
    width: 100%;
    max-width: 1000px;
    min-height: 100px;
    margin: 0 auto;
    padding: 100px 0 20px 0;
}
