:root {
    color-scheme: light dark;
    --primaryTextColor: light-dark(#121212, #CFCFCF);
    --primaryBGColor: light-dark(#AAAAAA, #777777);
    --secondaryBGColor: light-dark(#CCCCCC, #555555);
    --tertiaryBGColor: light-dark(#EEEEEE, #333333);
}
body {
    background-color: var(--primaryBGColor);
    max-height: 100vh;
    max-width: 100vw;
    min-width: 100vw;
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    color: var(--primaryTextColor);
    font-size: 1.35rem;
    font-weight: 450;
    font-family: "Signika Negative", sans-serif;
        display: grid;
        grid-template-rows: auto 1fr auto;
}
sys-nav {
    background-color: var(--primaryBGColor);
    padding: 0.5rem;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    height: 3.5rem;
    [slot="name"] {
        font-family: "Rammetto One", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    [slot="hamburgerSymbol"] {
        font-size: 2rem;
        font-family: "Noto Color Emoji", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    span {
        display: inline-flex;
    }
}
sys-nav[open] {
    display: flex;
    [slot="menu"] {
        display: flex;
        height: calc(100vh - 3.5rem);
        width: calc(100vw - 1rem);
        align-items: center;
        justify-content: center;
    }
}
sys-main {
    background-color: var(--secondaryBGColor);
    padding: 0 0.5rem;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    .mainContent {
        display: grid;
        grid-template-rows: 1fr;
        max-height: 100%;
        height: 100%;
        .inputWrapper {
            margin-right: 0.25rem;
            display: grid;
            gap: 0.5rem;
            position: fixed;
            top: 0;
            right: 0;
            grid-template-columns: auto auto auto;
            z-index: 10;
            button {
                font-family: "Noto Color Emoji", sans-serif;
                padding: 0.35rem 0.85rem;
                border-radius: 1.25rem;
                font-size: 2rem;
                border: solid rgba(255,255,255, 0.2) 0.2rem;
                cursor: pointer;
                background-color: rgba(0,0,0,0.6);
            }
        }
        .resultsWrapper {
            display: grid;
            justify-content: center;
            align-items: center;
            tik-tok {

            }
        }
    }
}
sys-footer {
    padding: 1.25rem;
    background-color: var(--tertiaryBGColor);
    align-items: center;
    justify-content: end;
    font-size: 0.75rem;
}