html,
body {
    height: 100%;
    margin: 0;
    font-family: sans-serif;
    color: #fff;

    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI',
        Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}

.site {
    position: relative;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Fullscreen video background (like background-size: cover) */
.video-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    /* 16:9 by default */
    min-width: 177.78vh;
    /* fill horizontally if viewport is tall */
    min-height: 100vh;
    /* fill vertically if viewport is wide */
    border: 0;
}

header {
    position: sticky;
    top: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    backdrop-filter: blur(4px);
    padding: 12px 20px;
    font-style: italic;
}

h1 {
    font-size: 1.2rem;
    margin: 0;
}

main {
    padding: 3vh 20px;
    max-width: 1080px;
    margin: 0 auto;
}

#flyer {
    max-width: 100%;
    opacity: 0.8;
}

.quote {
    font-size: 20pt;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    margin: 2vw;
    font-size: clamp(20pt, 2vw, 48pt);
    text-shadow: 0px 3px 0 #000;
    color: rgb(0, 200, 0);
}

#date {
    background: rgba(0, 0, 0, 0.9);
    padding: 4px 8px;
    text-transform: uppercase;
    text-align: center;
}

#tickets {
    color: #fff;
    text-decoration: none;
}

#stripe img {
    max-width: 50%;
}

#stripe {
    text-align: center;
    font-size: clamp(20pt, 4vw, 48pt);
    font-weight: bold;
    color: #d0131c;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
}