<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body &gt; header {
    width: 90%;
    height: calc(5vh + 10px);
    padding: 3vh 5%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-family: var(--aux-font);
    font-weight: 300;
    position: fixed;
    z-index: 10;
    box-shadow: var(--aux-color) 0px 0px 0px;
}

#menu-toggle {
    display: none;
}

html:not([data-scroll='0']) &gt; body &gt; header {
    background-color: var(--page-bg);
    box-shadow: var(--main-color) 0px 0px 10px;
}

body &gt; header a {
    background: none;
    color: var(--main-color);
}

html:not([data-scroll='0']) &gt; body &gt; header a {
    color: var(--main-color);
}

body &gt; header &gt; a {
    padding: 5px 0;
    height: fit-content;
    width: fit-content;
}

#header-logo {
    display: block;
    fill: var(--main-color);
    height: 5vh;
    width: auto;
}

html[data-scroll='0'] #header-logo &gt; * {
    fill: var(--base-color);
}

#header-logo &gt; :nth-child(5) {
    fill: var(--red);
}

body &gt; header &gt; nav {
    width: 60%;
    height: fit-content;
}

body &gt; header &gt; nav ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    display: flex;
}

body &gt; header &gt; nav &gt; ul &gt; li {
    display: flex;
    flex-direction: column;
    width: 20%;
    height: fit-content;
}

body &gt; header &gt; nav &gt; ul &gt; li &gt; a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 0px 10px 5px;
    color: var(--base-color);
}

body &gt; header &gt; nav &gt; ul &gt; li:hover &gt; a {
    color: var(--main-color);
}

body &gt; header &gt; nav &gt; ul &gt; li &gt; ul {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 5px 5px 10px;
}

body &gt; header &gt; nav &gt; ul &gt; li &gt; ul &gt; li &gt; a {
    font-weight: 400;
    display: flex;
    width: 90%;
}

body &gt; header &gt; nav &gt; ul &gt; li &gt; ul &gt; li &gt; a:hover {
    color: var(--red);
}

body &gt; header &gt; nav &gt; ul &gt; li &gt; a::before,
body &gt; header &gt; nav &gt; ul &gt; li &gt; ul &gt; li &gt; a::before {
    content: '&gt;';
    display: block;
    padding: 0 1ch;
    font-weight: 300;
    color: inherit;
}

body &gt; header &gt; nav &gt; ul &gt; li:hover &gt; a:not(:last-child)::before {
    transform: rotate(90deg);
}

body &gt; header &gt; nav &gt; ul &gt; li &gt; ul &gt; li &gt; a:hover::before {
    animation: bounce-x 1s infinite ease-in-out;
}

@keyframes bounce-x {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(10%);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(0);
    }
}

body &gt; header &gt; nav &gt; ul &gt; li:hover {
    background-color: var(--base-color);
    box-shadow: var(--aux-color-2) 0px 2px 5px;
}

body &gt; header &gt; nav &gt; ul &gt; li:hover &gt; a {
    color: #000;
}

body &gt; header &gt; nav &gt; ul &gt; li:hover &gt; ul {
    display: flex;
}

@media screen and (orientation: portrait) {

    body &gt; header {
        width: 90%;
        margin: 0;
        padding: 3vh 5%;
        align-items: center;
    }
    
    body &gt; header &gt; #menu-toggle:not(:checked) ~ nav {
        transform: translateX(100vw);
        transition: all 0.5s ease-in-out;
    }

    body &gt; header &gt; nav {
        transform: translateX(0);
        position: fixed;
        top: 0;
        right: 0;
        width: 90vw;
        height: 90vh;
        padding: 10vh 5vw 5vh;
        display: flex;
        flex-direction: column;
        background-color: var(--aux-color);
    }

    body &gt; header &gt; nav &gt; ul,
    body &gt; header &gt; nav &gt; ul &gt; li &gt; ul {
        display: flex;
        flex-direction: column;
    }

    body &gt; header &gt; nav &gt; ul &gt; li &gt; a::before {
        transform: rotate(90deg);
    }

    body &gt; header &gt; nav &gt; ul &gt; li {
        width: 100%;
        box-shadow: var(--main-color) 0px 2px 5px;
    }

    body &gt; header &gt; nav a {
        color: var(--main-color);
    }

    #sandwich {
        --sandwich-color: var(--base-color);
        display: block;
        width: 30px;
        height: 5px;
        background-color: var(--sandwich-color);
        position: relative;
        z-index: 100;
    }

    html:not([data-scroll='0']) #sandwich {
        --sandwich-color: var(--highlight-color);
    }

    #sandwich::before, #sandwich::after {
        content: '';
        width: 30px;
        height: 5px;
        background-color: var(--sandwich-color);
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(0, -10px);
    }

    #sandwich::after {
        transform: translate(0, 10px);
    }

    #menu-toggle:checked ~ #sandwich {
        transform: rotate(45deg);
    }

    #menu-toggle:checked ~ #sandwich::before,
    #menu-toggle:checked ~ #sandwich::after {
        transform: translate(0,0) rotate(-90deg);
    }

}</pre></body></html>