/* quicksand-regular - latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/quicksand-v22-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/quicksand-v22-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/quicksand-v22-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/quicksand-v22-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/quicksand-v22-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/quicksand-v22-latin-regular.svg#Quicksand') format('svg'); /* Legacy iOS */
}
/* quicksand-700 - latin */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/quicksand-v22-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/quicksand-v22-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/quicksand-v22-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/quicksand-v22-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/quicksand-v22-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/quicksand-v22-latin-700.svg#Quicksand') format('svg'); /* Legacy iOS */
}

@keyframes fadeIn {
  0%{opacity: 0;}
  100%{opacity: 1;}
}
@keyframes stars {
  0%, 100%{opacity: 0;}
  50%{opacity: 0.1;}
}

@keyframes slideup{
  0%{
    opacity: 0;
    transform:translate(0px,100px);
  }
  100%{
    opacity: 1;
    transform:translate(0px,0px);
  }
}
body, html{
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-family: 'Quicksand', sans-serif;
	color: black;
}

body{
	background: linear-gradient(180deg, rgba(243,243,243,1) 70%, rgba(48, 82, 160,1) 30%);
}

a{
	cursor: pointer;
	color: black;
	text-decoration: none;
}
button:hover{
	text-decoration: underline;
}

button {
	background: none!important;
	border: none;
	font-size: 16px;
	padding: 0!important;
	/*optional*/
	font-family: 'Quicksand', sans-serif;
	/*input has OS specific font-family*/
	color: black;
	text-decoration: none;
	cursor: pointer;
  }

.content{
	width: 100%;
	height: 100vh;
	animation-name: fadeIn;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out; 
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
	background-image: url(h-tech_hintergrund_gross.jpg);
	background-size: cover;
}

.stars{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-image: url(stars.png);
	opacity: 0;
	animation-name: stars;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out; 
	background-size: 100% auto;
	z-index: 10;
}

.logo{
	transform:translate(0px,100px);
	animation-name: slideup;
	animation-fill-mode: both;
	animation-duration: 2s;
	animation-delay: 1s;
	opacity: 0;
	width: 90vw;
    max-width: 500px;
	height: auto;
	z-index: 10;
	position: relative;
	align-self: center;
}
.emblem{
	position:absolute;
	top: -60px;
	right: -70px;
	width: 200px;
	z-index: 10;
	animation-name: fadeIn;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out; 
	animation-delay: 2s;
	opacity: 0;
}

.links{
	width: 100%;
	text-align: center;
	z-index: 20;
	animation-name: fadeIn;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out; 
	animation-delay: 2s;
	opacity: 0;
	position: absolute;
    bottom: 20px;
}

.text{
	display: none;
	z-index: 10;
	position: relative;;
	height: calc(100% - 200px);
	overflow-y: auto;
	width: 100%;
	align-self: center;
}
.text .inside{
	width: calc(100% - 30px);
	margin: auto;
	max-width: 1000px;
}

.text .inside .close{
	cursor: pointer;
}
