
.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

@media screen and (max-width: 480px) {
	.centered {
		position: absolute;
		left: unset;
		top: 50%;
		transform: translateY(-50%);
		padding: 20px;
	}
}

img {
	height: 100px;
}

/* Container für Bilder
------------------------*/

.extra {
	margin-top: 20px;
}

.extra img {
	height: 50px;
	padding: 5px;
	opacity: 0.7;
	display: inline-block;
	margin: 0 auto;
	margin-left: 10px;
}

.extra img:hover {
	opacity: 1;
}