
/* Anfang "CSS-Reset" bzw. Zurücksetzen der Browservorgaben für Außen- und Innenabstände */
* {
	margin: 0;
	padding: 0;
}
/* Ende "CSS-Reset" */


html {
	margin: 0;
	padding: 0;
	height: 100%; /* needed for container min-height */
	overflow: hidden;
	color: #fff;
}

body {
    font-family:"Jost-400-Book";
    background: #fff;
    margin: 0;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: .5px;
    -webkit-user-select: none; /* Chrome / Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10+ */
    -o-user-select: none; /* Opera */
    -khtml-user-select: none; /* Konqueror */
    user-select: none; /* Funktion */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word; /* Trennung langer Wörter */
    /*-webkit-hyphens: auto;*/ /* Chrome / Safari */
    /*-moz-hyphens: auto;*/ /* Firefox */
    /*-ms-hyphens: auto;*/ /* IE 10+ */
    /*-o-hyphens: auto;*/ /* Opera */
    /*-khtml-hyphens: auto;*/ /* Konqueror */
    /*hyphens: auto;*/ /* Silbentrennung */
}

div#background {
    margin-left: 0px;
    overflow-x: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    background-color: #fff;
}

div#container {
	height: 100%;
	margin: 0 0 0 0px;
	min-height: 100%;
	overflow: hidden;
	position: fixed;
	width: 100%;
	float:left;
	min-width: 400px /*1284px*/;

 	/*height:auto !important;  real browsers */
	height: 100%; /* IE6: treaded as min-height */

	min-height: 100%; /* real browsers */
}

  /* Logo Fade-Up Animation */
  @keyframes logoFadeUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .logo {
	display: flex; 
	justify-content: center; 
	align-items: center;
	height: 95vh;
}

.logo img {
	opacity: 0; /* initial unsichtbar */
    animation: logoFadeUp 0.8s ease-out forwards;
	background: url(media/graphix/logo.png) no-repeat center;
	width: 100%;
	height: auto;
	max-width: 600px;
}

.content p {
	font-size: 16px;
	line-height: 20px;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #f00;
	height: auto;
}

div#drop-down {
	position: absolute;
	margin: 5px 0 0 30px;
	float: left;
}

#drop-down ul li {
	display: inline;
}

#drop-down p {
	font-size: 10px;
	line-height: 12px;
	color: #000;
}

.description {
    position: relative;
    color: #999;
	font-size: 12px;
	font-weight: 100;
}

.description:hover .tool_tip {
    display: block;
}

.description:hover {
    color: #999;
}

.description .tool_tip {
    display: none;
    position: absolute;
    width: 400px;
	margin-top: 0px;
	margin-left: 0px;
}

p {
	margin: 15px 0;
}

h1, h2, h3, h4, h5 {
	font-weight: 100;
	margin: 0;
	padding: 0;
	left: 0;
}

a {
	color: #000;
	text-decoration: underline;
}


/********** Optimierung für Smartphones und Tablets **********/

@media screen and (max-width: 768px) {
	.description {
    	display:none;
	}

	.content p {
		color: #000;
		border: 0px solid rgb(30, 0, 255);
		position: fixed;
		left: 0px;
		bottom: 30px;
		width: 100%
	}

	.logo img {
	background: url(media/graphix/logo.png) no-repeat center;
	width: 100%;
	height: auto;
	max-width: 480px;
	border: 0px solid rgb(0, 94, 255);
	}

	#footer p {
	font-size: 10px;
	line-height: 20px;
	}
}

#footer {
	text-align: center;
    color: black;
    z-index: 10;
    border: 0px solid rgb(30, 0, 255);
    position: fixed;
    left: 0px;
    bottom: 30px;
    width: 100%
	}

@font-face {
	font-family: "Jost-300-Light";
	src:url(../fonts/Jost-300-Light.otf) format("opentype");
}

@font-face {
	font-family: "Jost-400-Book";
	/*font-weight: medium;*/
	src:url(../fonts/Jost-400-Book.otf) format("opentype");
}

@font-face {
	font-family: "Jost-500-Medium";
	/*font-weight: bold;*/
	src:url(../fonts/Jost-500-Medium.otf) format("opentype");
}

/*
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL

Copyright 2020 The Jost Project Authors (https://github.com/indestructible-type)
*/


