#banner {

    position: absolute;

    display: grid;
    gap: 0px;
    grid-template-columns: 0 1fr 0;
    grid-template-rows: var(--banner-height);
    grid-template-areas: "menu title gyro";
    justify-items: center;
    align-items: center;

    top: 0;
    width: 100%;
    height: var(--banner-height);

    background-color: var(--background-rgb);
    background-color: var(--background-rgba);

}



#banner #titleContainer {

    grid-area: title;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;

}



#banner #titleContainer #bannerText {

    font-size: 50vw;
    /* https://css-tricks.com/simplified-fluid-typography/ */
    font-size: min(max(10px, 3vw), 22px);
    font-weight: 400;

    color: var(--highlight-rgb);

    text-align: center;
    line-height: 50px;
    white-space: nowrap;

    max-width: 100%;

    overflow: hidden;

}


#banner #titleContainer #bannerText::after {

    content: " powered by";

}



#banner #imbLogo {

    width: auto;
    height: 50px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;

}



/* GYRO */

#banner #gyroIcon {

    grid-area: gyro;

}



#banner #gyroIcon .icon {

    display: none;

}