*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 18px;
}

body {
	margin: 0;
	--color-text: #fff;
	--color-bg: #000;
	--color-link: #5a5a5a;
	--color-link-hover: #3eaaf1;
	--color-alt: #3ba2e5;
	--color-info: #e93f3b;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: 'Georama', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1) rotate3d(0,0,1,180deg);
		border-radius: 50%;
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

.message {
	background: var(--color-text);
	color: var(--color-bg);
	padding: 1rem;
	text-align: center;
}

.frame {
	padding: 3rem 5vw;
	text-align: center;
	position: relative;
	z-index: 1000;
}

.frame__title {
	font-size: 1rem;
	margin: 0 0 1rem;
	font-weight: normal;
}

.frame__links {
	display: inline;
}

.frame__links a {
	display: block;
	margin: 0 1rem 0.5rem;
}

.frame__backgrounds {
	margin: 1rem 0;
}

.frame__background {
	display: block;
	padding-top: 0.5rem;
}

.frame__background--current,
.frame__background--current:hover {
	color: var(--color-link-hover);
}

.frame__info {
	color: var(--color-info);
}

.content {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: 100vh;
	position: relative;
	align-items: center;
    justify-content: end;
}

.content__title-wrap {
	width: 100vw;
	padding-bottom: 6em;
	position: relative;
	text-align: center;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 20%, rgba(0,0,0,1) 100%);
}

.content__pretitle {
	color: var(--color-alt);
	font-size: 1.35rem;
}

.content__title {
	font-size: 6vw;
	font-weight: normal;
	margin: 0.5rem 0 1.5rem;
	font-family: 'Georama', sans-serif;
}

.content__link {
	text-decoration: underline;
	font-family: 'Georama', sans-serif;
	font-size: 1.1rem;
	color: inherit;
}

#app {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: absolute;
}

a, a:visited, a:hover { color: #ff2b00; text-decoration: none; }

img { 
	margin: 0 auto;
	max-width: 100%;
}

iframe {
	display: block;
	width: 250px;
	height: 200px;
	border: 0;
	margin: 1em auto;
}

canvas {
	width: 100%;
	height: 100%;
}

.social-links {
	display: block;
	font-size: 0.75em;
}
.social-links a {
	display: inline-block;
	margin: 0.25em 1em;
}
h4 {
	margin-bottom: 0.25em;
}
h5 {	 
	 color: #ff2b00;
	 font-size: 1.1em;
	 margin: 0;
	 padding: 0;
	}
h6 {
    font-size: 0.75em;
    letter-spacing: 0.1em;
    font-weight: 100;
    margin-top: 0.25em;

}
a.stream-link {
    background: #ff2b00;
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 0.25em;
	border: 1px solid #000;
	margin: 0.5em 0.5em 1.5em;
}

a.stream-link:hover {
	color: #fff;
	border: 1px solid #fff;
}

/*======================== Embed Player ========================*/
.stream-toggle {
	padding: 1em;
	cursor: pointer;
}

.stream-toggle small {
    font-size: 0.75em;	
    margin-top: 1em;
    letter-spacing: 0.2em;
    padding: 2em;
    display: inline-block;
}

.media-player {
	display: none;
}


@media screen and (min-width: 53em) {
	.message {
		display: none;
	}
	.content {
		height: 100vh;
		justify-content: center;
	}
	.content__title-wrap {
		background: none;
	}
	
}


.logo {
	max-height: 200px;
	max-width: 90%;
}