html,
body {
	margin: 0px;
	height: 100%;
}



header {
	position: relative;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}



@keyframes fading {
	0% {
		background-position: 100% 100%;

	}

	50% {
		background-position: 0% 0%;
		word-spacing: 20px;


	}

	100% {
		background-position: 0% 100%;

	}
}

h1 {
	color: white;
	text-align: center;
	font-size: 3.5em;
	transition: font-size 2s;
	font-family: 'Bungee Shade', cursive;

}



h1:hover {
	color: #E7ECEF;
	font-size: 5.5em;
	word-spacing: 150px;
}

h2 {
	color: white;
	text-align: center;
	font-size: 1.5em;
	transition: font-size 2s;
	font-family: 'Bungee Shade', cursive;

}

#Autor {
	color: hsl(223, 100%, 85%);
	font-family: 'Ubuntu';
	font-weight: 1000;
	transition: color 1s, letter-spacing 2s;

}

#Autor:hover {
	color: #136F7C;
	letter-spacing: 5px;



}




.animiert {

	animation-name: fading;
	animation-duration: 15s;
	animation-iteration-count: infinite;
	background: linear-gradient(45deg, #0077ff, #000028);
	background-size: 100% 500%;
	animation-timing-function: ease;



}

.Pinguinbox {
	position: absoute;
	background: #CED8DE;
	text-align: center;
	display: flex;
	width: 100%;
	top: 99.9%;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;

}

#Infokasten {

	padding: 1%;
	border-style: dashed;
	margin: 5%;
	width: 35%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 90px black;



}

#Bild-Infokasten {
	margin-left: 3.5em;
	max-width: 30%;

}

#Infotext {
	width: 90%;
	max-height: 90%;
	font-size: 1.05em;
	background-color: aliceblue;
	padding: 1%;
}

.Linkbox {

	display: flex;
	background-color: #519de8;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;


}

#Ws {
	background-color: #E7ECEF;
	padding: 2%;
	border-radius: 3em;
	font-size: 1.5em;
	font-family: monospace;
	font-weight: bold;
	color: #140dea;
}

.Linkboxlink {
	font-size: 25px;
	background-color: azure;
	margin: 1%;
	padding: 2%;
	border-radius: 5px;
	font-family: fantasy;
	color: royalblue;
	background-color: ghostwhite;
	width: 75%;
	text-align: center;
	text-decoration: none;
	transition: all 0.5s;
	cursor: pointer;
	display:inline-block;
	transition: 0.5s;
	
}

.Linkboxlink:hover{
	background-color: #0077ff;
	color: white;
}


 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

 span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.Linkboxlink:hover span {
  padding-right: 25px;
}

.Linkboxlink:hover span:after {
  opacity: 1;
  right: 0;
}


footer {
	margin: 0px;
	background-color: #000014;
	color: white;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-items: center;

}


#left {
	width: 33.3%;
	text-align: left;

}

#center {
	color: white;
	width: 33.3%;
	text-align: center;
}

#right {
	color: white;
	width: 33.3%;
	text-align: right;
}






@media screen and (max-width: 1000px) {
	.Pinguinbox {

		flex-direction: column;
	}

	#Infokasten {
		width: 90%;
		box-shadow: 0px 0px 0px black;
	}

	h1 {
		font-size: 2.5em;
	}

	h1:hover {
		color: #E7ECEF;
		font-size: 3em;
		word-spacing: 150px;

	}

	.Linkbox {
		flex-direction: column;

	}

	footer {
		flex-direction: column;
	}

	#left {
		width: auto;
		margin: 2%;
		font-size: 1em;
	}

	#center {
		margin: 2%;
		color: white;
		width: auto;
		font-size: 1em;

	}

	#right {
		margin: 2%;
		color: white;
		width: auto;
		font-size: 1em;

	}
	
	.Linkboxlink{
		width: 75%;
	}


}
