body {
	margin: 0;
	font: 1.25em Calibri, sans-serif;
	display: flex;
	min-height: 100vh;
	margin: 0 auto;
	flex-direction: column;
    padding: 0;
}

.wrapper {
	margin: 0.5em auto;
}

header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background: hsl(0, 0%, 0%);
    padding: 1em;
    background-image: url(../img/Logo_blue.svg);
    background-size: 21em;
    background-position: 1em;
    min-height: 3em;
    background-repeat: no-repeat;

}

main {
	background-image: url(../img/DSC01368_klein.png);
	background-size: cover;
	background-color: #000;
    background-position: center;
	min-height: 10em;
	flex: 1;
	color: #dfac20;
}

h1 {
	text-align: center;
	color: hsl (13, 96%, 39%);
}

footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	background: hsl(0, 0%, 0%);
	margin: 1.5em auto;
    position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
    color: greenyellow;

}

footer a {
	padding: 1.25em 0.25em;
    text-decoration: none;
    color: hsl(13, 96%, 39%);
}

footer a:focus,
footer a:hover {
	background: hsl(13, 96%, 39%);
	color: white;
}
footer p {
    text-align: center;
}

footer img {
    max-height: 2em;
    align-items: center;
    position: absolute;
    bottom: 50%;
    left: 50%;
}