body {
    margin: 0;
}

html {
    color: #fff;
    font-family: "Source Code Pro", monospace;
    cursor:
        url("/assets/img/cursor_128.svg") 4 13,
        url("/assets/img/cursor_32.svg"),
        auto;

}

a,
area {
    cursor:
        url("/assets/img/cursor_bang_128.svg") 4 13,
        url("/assets/img/cursor_bang_32.svg"),
        auto;
}

h1 {
    font-size: 18;
    margin: 0;
    margin: 1rem;
    font-weight: 400;
    letter-spacing: -1%;
    opacity: 1;
}

h2 {
    font-size: 14;
    margin: 0;
    margin: 1rem;
    font-weight: 400;
    letter-spacing: -1%;
    opacity: 0.8;
}

p {
    font-size: 14;
    margin: 0.25rem;
}

iframe {
    margin-bottom: 1rem;
}

.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 1rem 1rem 1.5rem 1rem;
}


.main-container {

    position: relative;
    place-items: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-container .main {
    max-width: min(100%, 1200px);
}

.image-band {
    padding-top: 5vh;
    /* Tiled background image across full width */
    --feather: 20px;
    /* edge feather width */
    /* --bg: url("/assets/img/boyish-bg.png"); */
    /* horizontally seamless tile */
    background-image: var(--bg);
    background-repeat: repeat-x;
    background-position: center top;
    /* adjust as needed */
    background-size: auto 150%;
    /* or a fixed width like 320px */
    position: relative;
    place-items: center;
    /* Optional: set height or let content define it */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.grid {
    display: grid;
}

/* Center image scales responsively */
.image-band .main {
    max-width: min(100%, 1200px);
    height: auto;
    position: absolute;

}

/* Optional: control how the band scales on tall screens */
.image-band {
    overflow: scroll;
}

.sprite {
    pointer-events: none;
    transition: all 0.15s;
    /* Example for green */
}