/* Allgemein */

*
{
	box-sizing: border-box;
}

html
{
	height: 100%;
}

body
{
	color: #FFFFFF;
	font-family: 'Advent Pro', sans-serif;
	font-size: 1vmin;

	height: 100%;

	margin: 0px;

	background-image: url(backgr.jpg);
	background-size: cover;
	background-position: bottom center;
	background-attachment: fixed;
}

a
{
	color: #FFFFFF;
	text-decoration: none;
}

a:hover
{
	color: rgb(255,75,5);
}

/* Hilfsdefinitionen */

.orange
{
	color: rgb(255,75,5);
}

.blur
{
	background-image: url(blur.jpg);
	background-size: cover;
	background-position: bottom center;
	background-attachment: fixed;
}

.white
{
	background: -moz-linear-gradient(top,  rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.2) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.2)), color-stop(100%,rgba(255,255,255,0.2))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.2) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.2) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.2) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.2) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33ffffff', endColorstr='#33ffffff',GradientType=0 ); /* IE6-9 */
}

/* Layout */

.logo
{
	font-size: 500%;

	position: absolute;
	top: 0px;
	right: 10vmin;
}

.logo .white
{
	padding: 8vmin 4vmin 2vmin 4vmin;
}

.wrapper
{
	text-align: center;

	width: 100%;

	position: absolute;
	top: 15vh;
	left: 0px;
}

.wrapper .slogan
{
	text-align: left;
	display: inline-block;
}

.wrapper .slogan .text
{
	font-size: 500%;
}

.wrapper .slogan .text .space
{
	display: inline-block;

	width: 10vmin;
}

.wrapper .slogan .author
{
	font-size: 200%;
	font-style: italic;
	text-align: right;

	margin-top: 1vmin;
}

.wrapper .search
{
	margin-top: 5vmin;
}

.wrapper .search .blur
{
	width: 80%;
	max-width: 700px;

	margin: auto;
}

.wrapper .search .blur .white
{
	white-space: nowrap;

	width: 100%;

	padding: 1vmin 2vmin;
}

.wrapper .search .blur .white input
{
	color: #FFFFFF;
	font-size: 2vmin;

	width: 95%;

	border: none;
	background-color: transparent;
}

.wrapper .search .blur .white button
{
	color: #FFFFFF;
	font-size: 2vmin;
	text-align: right;

	width: 5%;

	padding: 0px;

	border: none;
	background-color: transparent;
}

.taskbar
{
	text-align: center;

	width: 100%;

	position: absolute;
	left: 0px;
	bottom: 0px;
}

.taskbar .imprint
{
	font-size: 125%;
	text-align: right;

	padding: 1vmin 2vmin;
}

.taskbar .blur .white
{
	width: 100%;
	height: 100%;

	padding: 4vmin 0px;
}

.taskbar .blur .white ul
{
	list-style-type: none;

	padding: 0px;
	margin: 0px;
}

.taskbar .blur .white ul li
{
	display: inline;
}

.taskbar .blur .white ul li a
{
	font-size: 275%;
	display: inline-block;

	margin: 0px 1.5vmin;
}