:root 
{
	--theme: #ffc000;
	--lighttheme: #fff096;
	--dark: #000000;
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.1em;
	color: var(--theme);
	font-family: 'Open Sans';
	font-weight: 300;
	line-height: 1.6;
	overflow-x: hidden;
	background-color: var(--dark);
}

::selection 
{
	background-color: var(--theme);
 	color: var(--dark);
}

::-moz-selection 
{
  	background-color: var(--theme);
 	color: var(--dark);
}

#animate
{
	display: none;
}

h1, h2, h3
{
	font-weight: 700;
	line-height: 1.3;
	font-size: 3.4em;
}

h2
{
	font-size: 1.6em;
}

h3
{
	font-size: 1.2em;
}

h1 + h3
{
	margin-top: 0.8em;
}

h2 + p, h2 + ul
{
	margin-top: 0.5em;
}

p + p, ul + p
{
	margin-top: 1em;
}

#content
{
	display: flex;
	min-height: 100vh;
	align-items: center;
}

#contentInner
{
	width: 100%;
}

.wrap
{
	max-width: 1350px;
	display: block;
	margin: auto;
	padding: 0px 40px;
}

#goldContainer
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
	text-align: right;
}

#gold
{
	width: 45%;
	padding-left: 40px;
}

#contentBox
{
	width: 55%;
}

#world
{
	position: relative;
	display: inline-block;
	padding-left: 2.2em;
}

#world:before
{
	content: "";
	position: absolute;
	width: 2em;
	height: 2em;
	bottom: 0;
	background-image: url(logo.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 0;
}

.text
{
	margin: 60px 0px;
}

.text ul li
{
	position: relative;
	list-style: none;
	padding-left: 1.2em;
}

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	left: 0;
	top: 0.63em;
	background-color: var(--theme);
	border-radius: 100px;
}

strong
{
	font-weight: 700;
}

#footer
{
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
	border-top: 1px solid var(--theme);
	padding-top: 15px;
}

a
{
	color: var(--theme);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
}

a:hover
{
	border-bottom: 1px solid var(--theme);
}

#back
{
	position: relative;
	margin-left: 2.2em;
}

#backContainer
{
	margin-top: 60px;
}

#back:before
{
	content: "";
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	left: -2.2em;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 1000px;
	background-image: url(back.svg);
	background-color: var(--theme);
	background-size: 70%;
	background-position: center;
	background-repeat: no-repeat;
}

#backContainer + .text
{
	margin-top: 30px;
}

.black
{
	color: var(--dark);
}

.language
{
	background-size: 1.5em;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 2em;
}

#de
{
	background-image: url(de.png);
}

#es
{
	background-image: url(es.png);
}

#festnetz
{
	padding-left: 47px;
}

@media all and (max-width: 750px){
	#contentBox
	{
		width: 100%!important;
	}

	#goldContainer
	{
		text-align: center;
	}

	#gold
	{
		width: 100%!important;
		max-width: 450px;
		opacity: 0.2;
	}

	h1
	{
		font-size: 2.2em!important;
	}

	h2
	{
		font-size: 1.2em!important;
	}

	h3
	{
		font-size: 1.1em;
	}
}

@media all and (max-width: 1050px){
	#gold
	{
		width: 40%;
	}

	#contentBox
	{
		width: 60%;
	}

	h1
	{
		font-size: 2.8em;
	}

	h2
	{
		font-size: 1.3em;
	}

	h3
	{
		font-size: 1.1em;
	}

	.text
	{
		margin: 30px 0px;
	}

	#footer
	{
		margin-bottom: 40px;
	}

	#backContainer + .text
	{
		margin-top: 25px;
	}

	#backContainer
	{
		margin-top: 40px;
	}
}