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

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

@font-face 
{
	font-family: 'Jura';
  	src: url('fonts/static/Jura-Medium.ttf') format('truetype');
 	font-weight: 500;
}

@font-face 
{
	font-family: 'Jura';
  	src: url('fonts/static/Jura-SemiBold.ttf') format('truetype');
 	font-weight: 600;
}

@font-face 
{
	font-family: 'Jura';
  	src: url('fonts/static/Jura-Bold.ttf') format('truetype');
 	font-weight: 700;
}

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

body
{
	font-family: 'Jura', sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 400;
  	font-style: normal;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	background-color: rgb(30,29,27);
	color: white;
}

img 
{
	width: 70%;
	object-fit: contain;
	margin-bottom: 100px;
}

h1
{
	margin-bottom: 40px;
}

p
{
	font-size: clamp(1em, 2.0vw, 1.5em);
	font-weight: 700;
	text-align: center;
}

#cmpny_info
{
	position: absolute;
	right: 50px;
	bottom: 10px;
	z-index: 200;
	font-size: 14px;
	color: rgba(0,0,0,0.9);
}

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

#impressum
{
	position: absolute;
	bottom: 0px;
	display: none;
	width: 100%;
	height: 450px;
	border-top: 2px solid rgba(255,255,255,0.7);
	background-color: rgb(30,29,27);
	color: rgba(255,255,255,0.8);
	box-sizing: border-box;
	padding: 20px;
	font-size: 10px;
	z-index: 1000;
}

#impressum p
{
	text-align: left;	
}


#close_impressum
{
	position: absolute;
	top: 5px;
	right: 20px;
	font-size: 20px;
	font-weight: bold;
}

#close_impressum:hover
{
	cursor: pointer;
	color: rgba(255,255,255,1);
}

#address
{
	position: absolute;
	right: 50px;
	bottom: 20px;
	text-align: left;
}

.label
{
	color: rgba(255,255,255,0.4);
}


