@font-face 
{
	font-family: 'Codystar';
  	src: url('fonts/static/Codystar-Regular.ttf') format('truetype');
	font-weight: 400;
}

@font-face 
{
	font-family: 'Codystar';
  	src: url('fonts/static/Codystar-Light.ttf') format('truetype');
	font-weight: 300;
}

@font-face 
{
	font-family: 'LexendPeta';
  	src: url('fonts/static/LexendPeta-Regular.ttf') format('truetype');
	font-weight: 400;
}


html, body
{
	height: 100%;
	width: 100%;
	margin: 0;
	padding:0;
}

body
{
	font-family: 'LexendPeta', sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	background-color: rgb(100,135,170);
	color: white;
}

img 
{	
	width: 70%;
	z-index: 1000;
}

#video
{
	position: absolute;
}

#volume
{
	position: absolute;
	bottom: 20px;
	z-index: 100;
}

#slider
{
  	-webkit-appearance: none;
  	width: 100%;
  	height: 15px;
  	border-radius: 10px;
  	background: white;
  	outline: none;
  	opacity: 0.5;
  	-webkit-transition: .2s;
  	transition: opacity .2s;
}

#slider:hover
{
	opacity: 0.7;
}

#slider::-webkit-slider-thumb
{
	-webkit-appearance: none;
  	appearance: none;
  	width: 25px;
  	height: 25px;
  	border-radius: 50%;
  	background: black;
  	cursor: pointer;
}

#slider::-moz-range-thumb 
{
	width: 25px;
  	height: 25px;
  	border-radius: 50%;
  	background: black;
  	cursor: pointer;
}

#logo:hover
{
	cursor: pointer;
}

#cmpny_info
{
	position: absolute;
	right: 50px;
	bottom: 10px;
	z-index: 200;
	font-family: 'Codystar', sans-serif;
	font-size: 14px;
	color: rgba(0,0,0,1);
}

#cmpny_info:hover
{
	cursor: pointer;
	color: rgba(255,255,255,0.8);
}

#impressum
{
	position: absolute;
	display: none;
	width: 90%;
	height: 90%;
	background-color: rgba(255,255,255,0.8);
	border-radius: 1%;
	border: 4px solid rgba(0,0,0,0.7);
	color: rgba(0,0,0,0.8);
	padding: 20px;
	z-index: 2000;
}

#contact
{
	position: absolute;
	bottom: 20px;
	right: 50px;
}

a
{
	text-decoration: none;
	color: rgb(100,135,170);
}

a:hover
{
	color: rgba(0,0,0,0.5);
}

#close_impressum
{
	position: absolute;
	top: 5px;
	right: 10px;
	font-family: 'Codystar', sans-serif;
	font-size: 20px;
	font-weight: bold;
}

#close_impressum:hover
{
	cursor: pointer;
	color: rgb(100,135,170);
}