/* Universal reset: keeps padding/borders inside your defined widths */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* functional roles */

body {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    max-width: 800px;
    margin: auto;
    /* padding: 1em; */
    line-height: 1.5em;
    background: #000c18;
    color: #E0EDDD;
}

a {
    color: #E0EDDD;
}

.title {
    font-size: 2em;
    font-weight: bold;
    font-family: "Arial", sans-serif;
}

p {
    margin-bottom: 1em;
}

/* layout / visisbility utils */

.pinned {
    position: fixed;
    z-index: 1000;
}

.naked {
    margin: 0;
    padding: 0;
}

.hero {
    width: 100vw;
    height: 10vh;
}

.hidden {
    display: none;
}

.shower {
    /*background-color: lightblue;*/
    /* padding: 2px; */
}

.shown {
    /* background-color: mistyrose; */
}

.main-box {
    /* Fluid width: spans nearly full screen on small mobile devices */
    width: 90%;

    /* Hard ceiling: stops expanding once it hits desktop monitor size */
    max-width: 600px;

    /* Safe fallback constraints for content layout spacing */
    min-width: 280px;

    /* Centers the box horizontally on the page */
    margin: 40px auto;

    /* Inner spacing, borders, and aesthetics */
    padding: 24px;
    /* background-color: #ffffff; */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}