header {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: var(--header-height);
    padding: 5px;
    background-color: var(--header-background);
    transition: 1s;
    z-index: 10;
}

header * {
    transition: 1s;
}

header.scrolled {
    --header-height: 50px;
    --header-background: #D9C9BF;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 1s;
}

header.scrolled * {
    transition: 1s;
}

header .logo {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}

header .logo .image {
    height: 100%;
    width: calc(var(--header-height) - 10px);
    border-radius: 50%;
}

header .logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: 0s;
}

header .logo h2 {
    flex: 1;
    font-weight: normal;
    color: var(--header-logo-text-color);
}

header nav {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-right: 20px;
}

header a {
    text-decoration: none;
    color: var(--header-text-color);
}

header a:hover {
    color: var(--header-text-color-active);
}

header a.active {
    color: var(--header-text-color-active);
}

header .burger-menu {
    display: none;
    align-items: center;
    margin-left: auto;
    padding-right: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

header .burger-menu:hover {
    color: var(--header-text-color-active);
}

@media only screen and (max-width: 768px) {
    header nav {
        display: none;
    }

    header .burger-menu {
        display: flex;
    }
}

@media only screen and (max-width: 600px) {
    header .logo {
        width: 75%;
    }

    header {
        --header-height: 75px;
    }
}

@media only screen and (max-width: 600px) {
    header .logo {
        width: 90%;
    }

    header .logo h2 {
        font-size: 1.2rem;
    }

    header {
        --header-height: 75px;
    }

    header .burger-menu {
        padding-right: 0;
    }
}