:root{
	--background-color: rgb(42,42,42);
	--darker-background-color: rgb(39,39,39);
	--accent-color: rgb(111,0,255);
	--text-color: #000000;
	--footer-text-color: #cfcfcf;
	--navbar-text-color: #ffffff;
	--navbar-heiht: 100px;
	--maps-margin: 50px;
	--maps-width: 400px;
	--gesamt-margin: 25px;
}

*{
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--navbar-text-color);
}

html{
	height: 100%;
}

body{
	height: 100%;
}

nav{
	height: var(--navbar-heiht);
	background: var(--background-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav .logo{
	height: calc(var(--navbar-heiht) - 20px);
	margin: 15px;
}

nav ul{
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	list-style: none;
}

nav li{
	height: 100%;
	width: 150px;
	text-align: center;
	position: relative;
	border-bottom: 4px solid var(--background-color);
}

nav li:hover{
	border-bottom: 4px solid var(--accent-color);
}

nav ul a{
	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;

	text-decoration: none;
}

.dropdown{
	height: min-content;
	width: 200px;
	background: var(--background-color);

	display: none;
	flex-direction: column;

	position: absolute;
	left: 0;
	top: var(--navbar-heiht);
}

.dropdown li{
	height: 70px;
	width: 100%;
}

.dropdown li a{
	justify-content: center;
	width: 100%;
}

nav li:hover .dropdown{
	display: flex;
}

nav input[type="checkbox"]{
	display: none;
}

.expandable_li{
	display: flex;
	justify-content: center;
	align-items: center;
}

.toggle_button{
	width: 30px;
	height: 23px;

	position: absolute;
	top: 35px;
	right: 35px;

	display: none;
	flex-direction: column;
	justify-content: space-between;
}

.bar{
	height: 4px;
	width: 100%;
	background: var(--navbar-text-color);
	border-radius: 100px;
}

.sportheim{
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.text{
	margin-left: var(--gesamt-margin);
	margin-right: var(--gesamt-margin);
	margin-top: 10px;
	color: var(--text-color);
}

footer{
	background: var(--background-color);
}
footer ul{
	list-style: none;
	padding: 24px;
	margin: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.maps{
	width: var(--maps-width);
	height: 300px;
	border-style: 0;
	margin-left: var(--maps-margin);
	display: flex;
}

.maps-text{
	margin-left: calc(var(--maps-width)/2);
	margin-bottom: 10px;
	color: var(--footer-text-color);
}

.kontakt-text{
	color: var(--footer-text-color);
}

.bfv{
	display: flex;
	justify-content: center;
	text-decoration: none;
	color: blue;
	font-size: 40px;
}

.link{
	border-style: 0;
	display: flex;
	justify-content: center;
}

.größe-link{
	height: 400px;
	width:85%
}

.link-text{
	margin-top: 50px;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	color: var(--text-color);
}

.download_button{
	width: 150px;
	height: 40px;
	margin-left: var(--gesamt-margin);
	color: var(--text-color);
}


@media(max-width: 700px){
	.toggle_button{
		display: flex;
	}
	nav ul{
		height: min-content;
		width: 100%;
		background: var(--background-color);

		display: none;
		position: absolute;
		top: var(--navbar-heiht);
	}
	nav li{
		height: min-content;
		width: 100%;
	}
	nav ul a{
		padding: 30px 0;
	}
	.expandable_li{
		display: block;
	}
	.expandable_li label{
		padding: 30px 0;
		cursor: pointer;
		display: block;
	}
	.expandable_li:hover .dropdown{
		display: none;
	}
	.expandable_li input[type="checkbox"]:checked ~ .dropdown{
		display: block;
	}
	.dropdown{
		position: static;
		width: 100%;
	}
	.dropdown li{
		padding: 0;
		display: block;
		position: static;
		background: var(--darker-background-color);
	}
	.dropdown li a{
		width: 100%;
		padding: 0;
		justify-content: center;
	}
	#toggle_button:checked ~ ul{
		display: block;
	}

	.sportheim{
		width: 100%;
		height: auto;
	}
}
