:root,
html[data-theme="light"] {
    --base-100: #f8f8f8;
    --base-200: #e4e4e4;
    --base-300: #d4d0ce;
    --base-content: #18181b;
    --primary: #ff9fa0;
    --primary-content: #1c2737;
    --secondary: #ff8904;
    --secondary-content: #1c2737;
    --accent: #f82834;
    --accent-content: #fff7ed;
    --neutral: #f8f8f8;
    --neutral-content: #09090b;
}

:root,
html[data-theme="dark"] {
    --base-100: #09090b;
    --base-200: #18181b;
    --base-300: #262629;
    --base-content: #f2f2f2;
    --primary: #ff9fa0;
    --primary-content: #1c2737;
    --secondary: #ff8904;
    --secondary-content: #1c2737;
    --accent: #f82834;
    --accent-content: #fff7ed;
    --neutral: #09090b;
    --neutral-content: #f8f8f8;
}
.moon-icon {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
}

.sun-icon {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
}

[data-theme="light"] .moon-icon {
    display: none;
}
[data-theme="dark"] .sun-icon {
    display: none;
}
:root {
    ul {
        list-style: none;
    }

    button {
        background: inherit;
        color: inherit;
        border: none;
        padding: 0;
        font: inherit;
        cursor: pointer;
        outline: inherit;
    }
    button:hover {
        opacity: 80%;
    }
}

body {
    background-color: var(--base-100);
    color: var(--base-content);
    font-family:
        InterVariable, ui-sans-serif, system-ui, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    opacity: 80%;
}

header {
    position: relative;
    display: flex;
    padding: 1rem;
    border-color: var(--primary);
    border-bottom: 1px solid var(--primary);
    justify-content: space-between;
    margin-inline: auto;
    align-items: center;
    font-weight: 500;
    font-size: large;
}
.brand {
    display: inline-flex;
    align-items: center;
    font-size: xx-large;
    font-weight: 900;
    gap: 1rem;
    font-family:
        "League Spartan", "Century Gothic", ui-sans-serif, system-ui,
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
}

.container {
    max-width: 95%;
    margin: auto;
    padding: 2rem;
}

.header-icon {
    width: 3rem;
    fill: var(--accent);
}

.menu-icon {
    width: 2rem;
    fill: inherit;
}
.hidden {
    display: none;
}
.block {
    display: block;
}

.semibold {
    font-weight: 600;
}

.primary {
    background-color: var(--primary);
    color: var(--primary-content);
}

.secondary {
    background-color: var(--secondary);
    color: var(--secondary-content);
}

.nav-toggle {
    display: block;
    font-size: xx-large;
}
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem;
    z-index: 50;
    background-color: var(--base-100);

    a {
        width: fit-content;
    }
}
.nav-links.is-open {
    display: flex;
    background-color: var(--base-200);
    border-bottom: 1px solid var(--base-content);
}

blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 5px solid var(--secondary);
    font-style: italic;
    max-width: 65ch;
}

h1 {
    font-size: xx-large;
    font-weight: 800;
}

h2 {
    font-size: x-large;
    font-weight: 700;
}

/* Desktop: hide hamburger, always show links */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    .nav-links {
        display: flex;
        position: static;
        flex-basis: auto;
        flex-direction: row;
        gap: 1.5rem;
        padding: 0;
        background: none;
        box-shadow: none;
        z-index: auto;
    }
    .container {
        max-width: 1200px;
        margin: auto;
        padding: 3rem;
    }
}
