header .banner.bg-image {
    display: grid;
    place-items: center;
    place-content: center;
    position: relative;
}


header .content * {
    color: var(--white);
}

header .content p {
    font-size: 24px;
    font-weight: 500;
}

header .content h1 {
    font-weight: 600;
    font-size: 30px;
}

#navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

header div:has(>ul) {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 36px 15px;
}

header ul * {
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
}

header ul {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 2em;
}