
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
}


#header > div {
    max-width: var(--max-width);
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-left: 4rem;
    padding-right: 4rem;
}

#header .button-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#header button {
    white-space: nowrap;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 5rem;
    color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    background-color: rgba(162, 177, 192, 0.5);
}

#header button.primary {
    background-color: var(--orange);
}

#header img {
    width: 5rem;
    height: 5rem;
}

@media (max-width: 768px) {
    #header > div {
        margin-top: 8rem;
        display: flex;
        justify-content: center;
        padding:0;
        height: 10rem ;
    }

    #header button {
        display: none;
    }
}

