.line {
	border: 0.7px solid #d6d6d6;
}

.name {
	font-family: Arial;
	color: #d6d6d6;
	margin-left: 2%;
	transition: .5s ease-in-out;
}

.header {
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
	margin-top: 2%;
}

.impressum {
	bottom: 5%;
	float: right;
	font-family: Arial;
	transform: translate(-50%, -50%);
	transition: .5s ease-in-out;
	color: #262626;
	z-index: 1;
}

.impressum:before {
	content: '';
	width: 100px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.impressum:hover:before {
	transform: scale(1);
}

.impressum:hover {
	color: #d6d6d6;
}

.impressum-div {
	font-family: Arial;
	margin-left: 10%;
	margin-top: 5%;
	transition: .5s ease-in-out;
}

.link {
	color: black;
	text-decoration: none;
	transition: .5s ease-in-out;
	z-index: 1;
}

.link:hover {
	color: #d6d6d6;
}

.link:before {
	content: '';
	color: black;
	width: 100px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.link:hover:before {
	transform: scale(1);
}

a {
	text-decoration: none;
	color: black;
}

.back {
	position: absolute;
	margin-top: 5px;
	margin-left: 5%;
}

ul {
	margin: 0;
	padding: 0;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}

ul li {
	list-style: none;
	float: left;
	margin: 10px;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 50%;
	font-size: 80px;
	position: relative;
	z-index: 1;
}

.footer {
	position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
	margin-bottom: 0%;
}

.impress {
	margin-bottom: 3%;
}

@media screen and (max-width: 500px) {
	.upper-line {
		margin-top: 15%;
	}
	
	.impressum-div {
		margin-top: 15%;
		padding-top: 5%;
	}
	
	ul li {
		display: inline-block;
		float: unset;
	}
	
	ul {
		max-width: 80px;
	}
	
	.impressum {
		margin-right: 5px;
		font-size: 10px;
	}
	
	.name {
		font-size: 10px;
	}
	
	.impress {
		margin-bottom: 3%;
	}

}

@media screen and (max-width: 700px) {
	.upper-line {
		margin-top: 10%;
	}
	
	.impressum-div {
		margin-top: 5%;
		font-size: 12px;
	}
	
	ul li {
		font-size: 70px;
		width: 70px;
	}
	
	.impressum {
		margin-right: 5px;
		font-size: 10px;
	}
	
	.link:before {
		width: 70px;
	}
	
	.name {
		font-size: 10px;
	}
	
	.impress {
		margin-bottom: 3%;
	}

}