body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    overflow: hidden;
}

.page {
    display: flex;
    position: absolute;
    align-items: center;
    width: 100%;
    height: 100%;
}

.page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.text {
    border-style: solid;
    border-width: 0.3em;
    border-radius: 0.3em;
    font-family: Orbit, sans-serif;
    font-size: 2em;
    margin: 0.2em;
    text-align: center;
}

.title {
    background-color: white;
    color: black;
    border-color: white;
}

.subtitle {
    background-color: black;
    color: white;
    border-color: black;
}

.background {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    filter: blur(1em);
}

#player {
    width: 100%;
    height: 100%;

}

a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: none;
}

.reminder-container:after {
    content: "👆=🔊";
    color: white;
    font-family: Orbit, sans-serif;
}

@media (hover: hover) and (pointer: fine) {
    .reminder-container:after {
        content: "🖱️=🔊";
        color: white;
        font-family: Orbit, sans-serif;
    }
}

.reminder-container {
    position: absolute;
    margin-top: -13em;
    transform: translateX(-50%);
    left: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}

.scrollingtext, .scrollingtext * {
    border: none;
    margin: 0px 0px;
    color: white;
    font-size: 15px;
    margin-top: -4px;
    height: 20px;
    text-shadow: 1px 1px 5px black;
}

video {
	object-fit: contain;
	width: 100%;
	height: 100%;
}