header {
    background-color: var(--background);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 0.8rem;
}

header #Logo img {
    max-width: 500px;
    max-height: 250px;
}

header nav > ul {
    display: flex;
    flex-direction: row;
    column-gap: 3rem;
}

header nav > ul > li {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

header a {
    text-decoration: none;
}





body:not(.mobile-nav-open) #MobileNav {
    display: none;
}

body.mobile-nav-open #MobileNav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: #DFEDF9;
    z-index: 1000;
}

body.mobile-nav-open {
    overflow: hidden;
}

body.mobile-nav-open #MobileNav ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

body.mobile-nav-open #MobileNav a {
    font-size: 1.5rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    color: black;
    text-align: center;
    display: flex;
    justify-content: center;
}

#MobileHeader {
    padding-inline: 1rem;
}

@media (min-width: 801px) {
    #MobileHeader {
        display: none;
    }
}

@media (max-width: 800px) {
    #DesktopHeader {
        display: none;
    }
}

#TopOpenMobileNav {
    font-size: 2rem;
    color: white;
}