/*------------------------------topBar------------------------------*/
section.topBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topBarH);
    background: var(--background);
    box-shadow: 0 0 0.6rem var(--shadow);
}

section.topBar div.logo1 {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--background);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 2rem;
    width: 12.8rem;
    height: 100%;
    overflow: clip;
}

section.topBar div.logo2 {
    background: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 25rem;
    height: 100%;
    cursor: pointer;
}

section.topBar h1 {
    text-align: center;
    line-height: var(--topBarH);
    margin: auto;

}
