body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #eee7;
	padding: 10px 0;
	align-items: center;
	opacity: 0.32;
}

main {
	flex: 1;
}

footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #f2f2f2;
	padding: 10px 0;
	opacity: 0.32;
}

footer a:link, footer a:visited {
	background-color: #2196f3;
	color: #fff;
	padding: 4px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	border: 1px solid #7773;
	border-radius: 12px;
	box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 20%);
	opacity: 0.32;
    transition: opacity 2s ease;
}

footer a:hover, footer a:active {
	background-color: #2196f3;
	opacity: 0.96;
    transition: opacity 2s ease;
}

.footer_container {
	padding-left: 125px;
}

#logo, #uberschrift {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 40px;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-onepage {
	box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 20%);
	margin: 2rem auto;
	padding: 2.5rem 3rem;
	margin-bottom: 2rem;
	box-sizing: border-box;
	border-radius: 25px;
	width: 780px;
	height: auto;
	min-height: 250px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	text-align: center;
}

#currentImage {
	max-width: 225px;
	max-height: 225px;
	border: 1px solid #7773;
	box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 20%);
}

#navigation {
	display: flex;
	align-items: center;
}

#navigation a {
	opacity: 0.32;
	transition: opacity 1s ease-in-out;
}

#navigation a:hover,
#navigation a:focus {
	opacity: 0.96;
}

#navigation a:not(:hover) {
  transition: opacity 1.5s ease-in-out;
  opacity: 0.32;
}

#prevImage, #nextImage {
	max-width: 64px;
	max-height: 64px;
	min-width: 64px;
	min-height: 64px;
	display: inline-block;
	background-image: url('arrow-r.svg');
	background-size: cover;
	text-indent: -9999px;
	opacity: 0.32;
	margin: 2rem auto;
}

#prevImage {
	transform: scaleX(-1);
}

#prevImage:hover, #nextImage:hover {
	opacity: 0.96;
    transition: opacity 1s ease;
}

#prevImage:hover::after, #nextImage:hover::after {
	opacity: 0.32;
    transition: opacity 1s ease;
}

#counter {
	opacity: 0.32;
}

#hilfe p {
	text-align: center;
	margin: 2px;
	padding: 1px;
	opacity: 0.64;
    transition: opacity 12s ease;
}

#hilfe a:link, #hilfe a:visited {
	background-color: #f44336;
	color: white;
	padding: 4px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	text-align: right;
	border: 1px solid #7773;
	border-radius: 12px;
	box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 20%);
	opacity: 0.32;
    transition: opacity 2s ease;
}

#hilfe a:hover, #hilfe a:active {
	background-color: red;
	opacity: 0.96;
    transition: opacity 2s ease;
}
