@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Passions+Conflict&display=swap');

:root{
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: underline;
    color: white;
}

a:hover {
    transition: 0.5s;
    color: #6ecf7e;
}

header {
    top: 0;
	background-color: rgba(38, 38, 38, 0.4);
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
    z-index: 10;
    min-width: 100%;
    position: fixed;
}

header h1 {
	width: 25%;
	opacity: 1;
	margin-left: 2.5%;
}

header .menu {
    width: 75%;
}

header .menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15%;
	border: 2.5px solid rgba(38, 38, 38, 0);
	border-radius: 5px;
	padding: 0.5%;
}

header .menu a:hover {
	background-color: rgba(38, 38, 38, 0.75);
	transition: 0.75s;
	border: 2.5px solid white;
}

.impressum {
    color: white;
    min-height: 100vh;
    max-height: fit-content;
    background-image: url(pictures/zoo-background.jpg);
	background-position: center;
	background-size: cover;
    max-width: 100%;
    padding: 2%;
    padding-top: 75px;
}

.impressum h1 {
    text-decoration: underline;
}

footer {
	position: absolute;
	width: 100%;
	height: 50px;
	background-color: #262626;
	color: white;
	text-align: center;
	z-index: 1;
}