body {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    font-family: 'IBM Plex Mono', monospace;
}

#video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
	z-index:-1;
    object-fit: fill;
}

#count {
    position: fixed;
    height: 50%;
    width: 50%;
    top: 0;
    left: 0;
    word-wrap: break-word;
    font-size: 12pt;
    overflow: hidden;
}

#countrelative {
    position: relative;
    width: 100%;
    height: 100%;
}

#counttext {
    color: white;
    mix-blend-mode: difference;
}

@keyframes switch {
    0% { background-color: grey; }
    50% {background-color: lightgray; }
    100% { background-color: grey; }
}

#graphic {
    position: fixed;
    height: 50%;
    width: 50%;
    top: 50%;
    left: 0;
}

#story {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 50%;
    font-size: 18pt;
    white-space: pre-line;
}

#storytext {
    width: 500px;
    margin: 200px auto;
    padding-bottom: 200px;
}

a {
    color: gray;
    text-decoration: none;
}