@import url('colors.css');

header img {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

header h1 {
    display: inline;
    vertical-align: middle;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-header-background);
    color: white;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 50px;
    max-width: 100%;
    align-items: end;
    text-align: right;
}


.title {
    position: fixed;
    top: -20px;
    left: 50%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.header-logo {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: top 0.5s ease, transform 0.5s ease, width 0.5s ease, height 0.5s ease;
    z-index: 1000;
    width: 100px;
    height: auto;
    cursor: pointer;
    
}


.header-logo.scrolled {
    top: 2px;
    width: 65px;
    height: auto;
}


.header-logo-text {
    color: var(--color-logo-seed-shield);
    font-size: 40px;
    position: fixed;
    top: 80px;
    left: 50%;
    z-index: 1000;
    width: 100px;
    height: auto;
    transition: color 0.5s ease, top 0.5s ease, left 0.5s ease, font-size 0.5s ease;
}

#headerLogoSeedText {
    left: calc(50% - 168px);
}

#headerLogoSeedText.scrolled {
    left: calc(50% - 150px);
    top: 20px;
    color: var(--color-header-logo-scrolled);
    font-size: 25px;
}

#headerLogoShieldText {
    left: calc(50% + 65px);
}

#headerLogoShieldText.scrolled {
    left: calc(50% + 30px);
    top: 20px;
    color: var(--color-header-logo-scrolled);
    font-size: 25px;
}


@media screen and (max-width: 610px) {
    .header-logo-text {
        font-size: 30px;        
    }}

