body {
    background-color: red;
    color: #ddd;
    font-family: "Courier New", Courier, monospace;
    overflow: visible;
    padding: 0;
    margin: 0;
}
div.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
h1.title {
    display: block;
    width: fit-content;
    max-width: 55vmin;
    text-align: center;
    font-size: 5vmin;
    margin: 0.5em;
}
h1.title a {
    display: block;
    color: white;
    line-height: 66%;
    text-decoration: none;
    border-bottom: 0.5px solid white;
}
h1.title a:hover {
    color: red;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
}
h2.subHed {
    display: block;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.75vmin;
    max-width: fit-content;
}
nav {
    width: 63vmin;
}
nav a {
    display: block;
    padding: 0 8px;
    margin: 2px 0 4px;
    border-radius: 0.5em;
    color: white;
    text-decoration: none;
}
nav a:hover {
    color: red;
    background-color: white;
}
nav a.prev {
    float: left;
    text-align: left;
    border: 1px solid #aaa;
}
nav a.prev::before {
    content: "prev: ";
    color: #aaa;
}
nav a.next {
    float: right;
    text-align: right;
    border: 1px solid #aaa;
}
nav a.next::before {
    content: "next: ";
    color: #aaa;
}

.manifesto {
    min-width: 55vmin;
    background-color: #bfbfbb;
    border-radius: 0.5em;
    margin: 0 auto;
    padding: 4vmin;
    color: #666;
    font-size: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.manifesto.square {
    aspect-ratio: 1 / 1;
}
.manifesto * {
    max-width: 50vmin;
    font-size: 1.5vmin;
    margin: 0.5em auto;
    font-weight: bold;
}
.manifesto img#luddLogo {
    display: block;
    max-width: 20vmin;
    margin-top: 1em;
}
.manifesto h1 {
    white-space: nowrap;
    font-size: 2vmin;
    margin-bottom: 0;
}
a.button,
input[type="submit"] {
    text-align: center;
    text-decoration: none;
    display: block;
    width: 15em;
    background-color: red;
    border: 2px solid red;
    color: white;
    font-family: "Courier New", Courier, monospace; /* Have to redeclare font-family for FF */
    font-weight: 600;
    font-size: 2vmin;
    border-radius: 0.5em;
    margin: 0.25em auto;
    padding: 0.24em;
    overflow: visible;
}
a.button:hover,
input[type="submit"]:hover {
    color: red;
    background-color: white;
    border: 2px solid red;
}
a.button#luddTalk {
    color: red;
    background-color: white;
    border: 2px solid white;
}
a.button#luddTalk:hover {
    color: white;
    background-color: red;
}

.manifesto form label {
    border-bottom: 1px solid;
    display: inline-block;
    width: 18em;
}
.manifesto form label input {
    float: right;
}
.manifesto form label:hover {
    border-color: #f00;
}
#rroseselavy:has(p) {
    background-color: white;
    padding: 1em;
}
#rroseselavy p {
    margin: 2em;
    border-bottom: 1px dotted #666;
}
#stage {
    height: 20vmin;
    width: 100%;
    margin: 0;
    background-color: transparent;
    font-size: 4vh;
    position: relative;
    top: -10vmin;
    overflow-x: hidden;
    overflow-y: visible;
}
.raison {
    text-align: right;
    white-space: nowrap;
    text-shadow:
        -1px -1px 0 red,
        1px -1px 0 red,
        -1px 1px 0 red,
        1px 1px 0 red;
    position: absolute;
    top: 50%;
    animation: raison;
    animation-fill-mode: forwards;
}
#stage.play .raison {
    animation-play-state: running;
}
#stage.pause .raison {
    animation-play-state: paused;
}
video {
    height: 20vmin;
    background-color: transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.stage.play video {
    animation: bigChickie;
    animation-fill-mode: forwards;
    animation-duration: 5s;
    animation-iteration-count: 1;
    animation-play-state: running;
}
.stage.pause video {
    animation-play-state: paused;
}
@keyframes raison {
    0% {
        filter: blur(10px);
        opacity: 0;
        left: 80%;
    }
    2% {
        opacity: 1;
    }
    25% {
        filter: blur(0);
        opacity: 1;
    }
    100% {
        filter: blur(10px);
        opacity: 0;
        left: -100%;
    }
}
@keyframes bigChickie {
    0% {
        filter: blur(30px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}
