/* PRONK! 
* I decided to test using the new RGB syntax that leaves out the commas, to test if brain can handle it, tho I like having the clarity. 
* Note VSCode has the auto recombobulator to change from one to another but still defaults to adding commas, lol. 
*/

:root {
    --paper1: rgb(19 22 4);
    --paper2: rgb(30 31 15);
    --orange: rgb(168 67 0);
    --amber: rgb(204 153 0);
    --lemon: rgb(255 204 0);
    --jade: rgb(41 255 73); 
    --snow: hsl(0, 0%, 98%);

    --font-sans: Cantarell, 'Open Sans', sans-serif;
    --font-serif: 'IBM Plex Serif', Merriweather, serif;
    --font-mono: 'Fira Code', Consolas, monospace; 
    --font-script: Calligraffiti, script; 

    --size: 48px;
}

html {
	font-size: 1rem;
    font-family: var(--font-mono);
}

body {
    background-color: var(--paper1);
    color: var(--snow);
    line-height: 1.5; 
    text-align: center;
}

/* basic layout ============================================================== */
.page-header,
.page-footer {
    border: 1px solid var(--amber);
    border-radius: 12px;
    box-shadow: inset 0 0 16px 0 var(--amber), 0 0 16px 0 var(--amber);
}
.page-header > h1 {
    font-size: 4em;
    text-transform: uppercase;
}

main { 
    margin: 42px 0;
}

.center-inline {
    @media screen and (width > 600px) {
        max-inline-size: 1280px;
        margin-inline: auto;
        display: grid;
        gap: 1em;
        grid-template-columns: 1fr 1fr;
    }
}

.page-footer {
    padding: 64px 0;
    display: flex;
    align-items: center; 
    gap: 1em;
    flex-direction: column; 

    @media screen and (width > 600px) {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
}


/* basic inline tags ====================================================== */
article {
    padding: 1em;
    margin-bottom: 3em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-script);
    text-wrap: balance; 
    color: var(--lemon);
}

img, 
picture, 
svg, 
video {
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.lyrics {
    max-width: 64ch;
    margin: auto;
}

.littlelink {
    border: 2px solid var(--amber);
    border-radius: 12px;
    padding: .5em;
}
.littlelink:hover {
    border-color: var(--jade);
}

/* borders and such 
 * Green on black is a classic but looks too X Files to only use it, lol. 
 * Amber is good but not sure if want just it, mixing with green might contrast too much tho. 
 * Orange is probably too dark for a "glow" esp if mixing in the other colors, not enough contrast with bg. 
 * ! let's test using the from() func instead of typing out the whole color again!!
*/

.aura-amber {
    border-radius: 8px;
    box-shadow: 0 0 12px rgb(from var(--amber) r g b / 0.66), 0 0 24px rgb(from var(--amber) r g b / 0.33);
}

.aura-lemon {
    border-radius: 8px;
    box-shadow: 0 0 12px rgb(from var(--lemon) r g b / 0.66), 0 0 24px rgb(from var(--lemon) r g b / 0.33);
}

.aura-jade {
    border-radius: 8px;
    box-shadow: 0 0 12px rgb(from var(--jade) r g b / 0.35), 0 0 24px rgb(from var(--jade) r g b / 0.18);
}

