/*@import url("https://fonts.googleapis.com/css2?family=Plaster&family=Rubik+80s+Fade&family=Rubik+Dirt&family=Rubik+Doodle+Triangles&display=swap");*/
@import url("https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

:root {
    --orange: oklch(0.6915 0.1661 53.52);
    --charcoal: oklch(0.3 0 0);
}

* {
    box-sizing: border-box;
    margin-block: 0;
}

/*html {
    scrollbar-gustter: stable;
}*/

body {
    margin: 0;
    font-family:
        "Lexend",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
    line-height: 1.6; /* Make the line-height more reader friendly */
    color: var(--charcoal);
}

.page-layout {
    min-block-size: 100svb;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1; /* Set tighter line heights on headings & interactive elements */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

input,
button,
textarea,
select {
    font: inherit; /* Inherit fonts for inputs and buttons */

    font-size: max(16px, 1em); /* prevents zoom on focus in iOS */
}

img {
    /* video, iframe, svg (careful) */
    display: block;
    max-inline-size: 100%;
    block-size: auto;
}

.text-center {
    text-align: center;
}

.prose > * + * {
    /*variable spacing for text flow*/
    margin-block-start: 1em;
}

.header {
    display: flex;
    align-items: center;
    margin-block: 1rem;
    gap: 2rem;
    line-height: 0;
}

.header div:last-child {
    margin-inline-start: auto;
}

main {
    margin-block-end: 2rem;
}

.footer {
    padding: 0.5rem 1rem;
    background: var(--orange);
    font-family: "Courier New", Courier, monospace;
    font-size: 0.75rem;
    line-height: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .ig-link {
    margin-inline-start: auto;
    padding-inline-end: 0.5rem;
    font-family: "Lexend", sans-serif;
    /*font-size: 1.5em;*/
    font-weight: 800;
}
footer .ig-link a {
    text-decoration: none;
    color: black;
}
footer .ig-logo {
    display: inline;
    line-height: 0;
    height: 2rem;
    filter: opacity(0.75);
}

.wrapper {
    inline-size: min(1200px, 100% - 2rem);
    margin: 0 auto;
}

.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.center-grid {
    display: grid;
    height: 100%;
    place-items: center;
}

.auto-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-inline: auto;
}

.auto-flex > * {
    flex-grow: 1;
    inline-size: 300px;
}

/*.rubber-logo {
    display: inline;
    height: 3rem;
    filter: grayscale(100%);
}*/

.zach {
    font-family: "Rubik Mono One", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: black;
    filter: drop-shadow(1px 1px 0.5px var(--orange));
}

.zach-alt {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 0.95em;
    font-kerning: normal;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-inline-start: -0.22em;
    margin-inline-end: -0.3em;
    /*filter: drop-shadow(1px 1px 0.5px black);*/
}

.zach-splash {
    font-size: clamp(2.7994rem, 2.384rem + 1.8461vw, 3.8147rem);
}
