html, body { height: 100vh; margin: 0; padding: 0; }
body {
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(255,255,255,.9);
    font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
    font-size: 1rem;
    text-align: center;
}
a {
	color: inherit;
}
small {
	font-size: .75rem;
	opacity: .5;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding-bottom: 4rem;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
li {
}
li a {
    background: rgba(255, 255, 255, .5);
    color: #000;
    border-radius: 15px;
    display: block;
    text-decoration: none;
    margin: 10px 10px 0;
    padding: 10px 10px 0;
    height: 100%;
    box-sizing: border-box;
}
li img {
    display: inline-block;
    object-fit: contain;
    height: 128px;
    width: 128px;
}
h1, h2, h3 {
    text-shadow: 1px 1px 2px black;
}
h2 {
    margin: 3rem 0 0;
}
video {
	display: block !important;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	z-index: 1;
}
#imageDescription {
    box-sizing: border-box;
    position: fixed;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .5rem;
    z-index: 2;
}
#imageDescription .lft {
    align-self: flex-start;
}
#imageDescription .rgt {
    align-self: flex-end;
}
#imageDescriptionBlur {
    mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: rgba(0,0,0,.3);
    pointer-events: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4rem;
    z-index: 1;
}