* {
	padding: 0;
	margin: 0;
}

img {
	width: 100%;
}

#dot {
	display: flex;
	flex-basis: 10em;
	flex-grow: 1;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	width: 10em;
	height: 10em;
	position: fixed;
	left: 0;
	z-index: 999;
	bottom: 0;
}

#dot:after {
	content: " ";
	background-color: #f5eb00;
	width: 4em;
	height: 4em;
	transition: width 0.2s ease, height 0.2s ease;
	border-radius: 50%;
	animation: grow 1s ease 0s backwards;
}

#dot:hover:after {
	width: 5em;
	height: 5em;
}

@font-face {
	font-family: 'Europa';
	src: url("EuropaLight.otf");
	font-weight: 200;
	font-style: normal;
	font-display: block; }

@font-face {
	font-family: 'Europa';
	src: url("EuropaRegular.otf");
	font-weight: normal;
	font-style: normal;
	font-display: block; }

@font-face {
	font-family: 'Europa';
	src: url("EuropaBold.otf");
	font-weight: 800;
	font-style: normal;
	font-display: block; }

#kontakt {
	color: #222;
	justify-content: flex-start;
	display: flex;
	align-items: center;
	z-index: 99999999;
	flex-wrap: wrap;
	padding: 4em 0.5rem;
	position: fixed;
	left: 10em;
	right: 0;
	bottom: 0;
}

@keyframes grow {
	from {
		width: 0;
		height: 0;
	}
}

@keyframes hello {
	from {
		opacity: 0.0;
	}

	to {
		opacity: 1.0;
	}
}

#kontakt>* {
	padding: 0.1em 0.8em 0.1em 0;
}

body {
	font-family: Europa,sans-serif;
}

figure {
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}

main {
	display: flex;
	flex-wrap: wrap;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1 {
	order: -1;
	padding: 6vw;
	padding-right: 4vw;
	line-height: 1.4;
	font-size: 1.3em;
	font-weight: 400;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: flex-start;
	background-color: white;
	mix-blend-mode: screen;
	transition: opacity 0.5s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: fixed;
	lefT: 0;
	top: 0;
	bottom: 0rem;
}

@media(min-width: 40em) {
	h1 {
		font-size: 2em;
		padding: 5rem;
	}
}

@media(min-width: 80em) {
	h1 {
		font-size: 2.5em;
	}
}

@media(orientation: landscape) and (max-width: 1000px) {
	h1 {
		font-size: 1.1em;
	}
}

@media(max-height: 500px) {
	#kontakt {
		min-height: unset;
		left: 8em;
		padding-top: 0;
	}

	h1 {
		padding: 1rem;
	}

	#dot {
		height: 6em;
		width: 8em;
	}
}

@media(max-width: 25em) {
	#kontakt {
		font-size: 0.9em;
	}

	h1 {
		font-size: 1em;
	}
}

@media(max-width: 40em) {
	#dot {
		width: 7em;
		height: 7em;
		padding-bottom: 2em;
	}

	#kontakt {
		left: 7em;
		padding: 0 1rem 2rem;
	}
}

input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	display: none;
}

input[type=checkbox]:checked ~ #dot {
	background: transparent;
}

input[type=checkbox]:checked ~ h1 {
	opacity: 0!important;
}
