:root {
	--maincolor: #6fe651;
	--seccolor: #ffb240;
	--bgcolor: #3a2c54;
	--bgcolor2: #271e38;
}

*:focus {
	outline: none;
}

body {
	background-color: var(--bgcolor);
	color: var(--maincolor);
	font-family: 'Source Code Pro', 'Courier New', monospace;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	line-height: 1.5em;
}

/* h1 {
	overflow: hidden;
	height: 1.5em;
	word-wrap: break-word;
	white-space: nowrap;
	animation: typing 2s steps(21) forwards;
	-webkit-animation: typing 2s steps(21) forwards;
}

@keyframes typing {
	from { 
		width: 0;
	}
	to { 
		width: 21ch;
	}
} */

p {
	margin: 0 0 1.5em 0;
}

a {
	color: var(--seccolor);
}

a:hover, a:active {
	color: var(--seccolor);
	opacity: 0.50;
}

::-webkit-scrollbar {
	width: 2px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: var(--maincolor);
}

::-webkit-scrollbar-thumb:hover {
	opacity: 0.50;
}

img.logo {
	width: auto;
	height: auto;
	max-width: 100%;
	margin: 0 0 1.5em 0;
}

.blur {
	filter: blur(5px);
	-webkit-filter: blur(5px);
}

.blink {
	animation: blinker 1s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

.overlay {
	width: 100vw;
	height: 100vh;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--bgcolor);
	opacity: 0.75;
	z-index: 1;
}

.main {
	max-width: 1100px;
	padding: 40px;
	margin: 0 auto;
}

.impressum, .datenschutz {
	display: none;
	width: 90vw;
	max-width: 764px;
	max-height: 80vh;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	padding: 40px;
	background-color: var(--bgcolor2);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	z-index: 2;
}

.inner {
	height: 70vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0 40px 0 0;
}

a.close {
	position: absolute;
	width: 30px;
	height: 30px;
	font-size: 30px;
	top: -10px;
	right: -10px;
	text-decoration: none;
	color: var(--maincolor);
	background-color: #000;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

a.close:hover, a.close:active {
	opacity: 1;
}

ul.socials {
	margin: 0 0 1.5em 0;
	padding: 0;
}

	ul.socials li {
		list-style: none;
		line-height: 1em;
		padding: 10px;
	}

		ul.socials li a {
			display: block;
			color: var(--maincolor);
			text-decoration: none;
			font-size: 30px;
		}

@media only screen and ( max-width: 480px ) {
	
	.impressum, .datenschutz {
		padding: 20px;
		font-size: 14px;
	}

	.inner {
		padding: 0 20px 0 0;
	}

}