* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #000000;
    background-color: #000000;
}

h1 {
    margin: 0px;
    margin-bottom: 20px;
}

h3 {
    margin: 0px;
    margin-bottom: 15px;
    line-height: 28px;
    font-weight: normal;
    font-size: 20px;
}

p {
    margin: 0px;
    margin-bottom: 0px;
    line-height: 1.5rem;
}

a, a:hover, a:visited {
    text-decoration: underline;
    color: #000000;
}

.loader {
    position: fixed;
    left: calc(50vw - 24px);
    top: calc(50vh - 24px);
    z-index: 100;
    
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

#video {
    
    position: fixed;
    right: 0;
    bottom: 0;
    /*min-width: 100%;*/
    width: auto;
    /*min-height: 100%;*/
    height: 100vh;
    transform: translateX(calc((100% - 100vw) / 2));
}

.content {
    position: fixed;
    left: 25px;
    bottom: 25px;
    background: rgba(0,0,0,0.5);
    color: #f1f1f1;
    color: rgba(249,217,107,1);
    width: calc(100vw - 50px);
    padding: 30px;
    border-radius: 5px;
}

.content a, .content a:hover, .content a:visited {
    color: #f1f1f1;
    color: rgba(249,217,107,1);
}

.flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.flex > * + * {
    margin-left: 50px;
}

.flex > p {
    padding-top: 12px;
    color: rgba(255,255,255,0.5);
    color: rgba(249,217,107,1);
}

.flex a {
    color: rgba(255,255,255,0.5);
    color: rgba(249,217,107,1);
}

#toggle, #unmute, #imprint {
    position: absolute;
    right: 0px;
    top: -52px;    
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.5);
    color: rgba(249,217,107,1);
    cursor: pointer;
    border-radius: 5px;
}

#toggle:hover, #unmute:hover, #imprint:hover {
    background: rgba(0,0,0,0.75);
    color: rgba(255,255,255,0.75);
    color: rgba(249,217,107,1);
}

#unmute {
    right: 210px;
}

#imprint {
    right: auto;
    left: 0px;
    display: none;
}

@media (max-height: 600px){
    .content {
        padding: 0px;
    }
    
    .content.mobile {
        padding: 25px;
    }
    
	.footer {
    	display: none;
	}
	
	.content.mobile .footer {
    	display: block;
    	max-height: 200px;
    	overflow-y: scroll;
	}
	
	#imprint {
    	display: block;
	}
	
	#toggle, #unmute, #imprint {
    	top: -27px
	}
	
	.content.mobile #toggle, .content.mobile #unmute, .content.mobile #imprint {
    	top: -52px
	}
	
	.content.mobile .flex {
    	display: block;
	}
	
	.content.mobile .flex > * + * {
    	margin-left: 0px;
	}
	
	.content.mobile .flex h1 {
    	font-size: 25px !important;
    	line-height: 28px;
	}
	
	.content.mobile .flex h3 {
    	font-size: 14px !important;
    	line-height: 20px;
	}
	
	.content.mobile .flex p {
    	font-size: 13px !important;
	}
}