/*
 * Header Stylesheet
 *
 * This CSS file contains styles and layout rules specifically for the header section of HTML documents.
 * It defines the appearance, positioning, and responsive behavior of header elements, including navigation bars,
 * logos, and any associated components. Use these styles to ensure a consistent and visually appealing header
 * across your website or application.
 */

.header-container {
    background: var(--blue-depth, #D9DCCF);
    color: var(--theme-body-background, #FFF);
    display: flex;
    padding: 12px;
    align-items: center;
    box-sizing: border-box;
}
.header-logo {
    display: flex;
}
.header-logo img {
    display: flex;
    width: 78px;
    height: 40px;
    padding: 5px 16px 5px 0px;
    align-items: center;
    flex-shrink: 0;
}
.header-content {
    display: flex;
    justify-content: center;
}

.header-text {
    align-content: center;
}

.header-text > h3 {
    color: var(--text-100);
    margin-bottom: 0;
}

.header-text > h4 {
    text-transform: uppercase;
    margin-bottom: 0;
}