html {
	text-align: center;
}


body {
	background-image: url("Hintergrund.jpg");
	background-size: cover;
}

h1 {
	color: #FFF;

}



button {
	margin-top: 100px;
	padding: 5px 5px 5px 5px;
	color: #8B0000;
	background-color: #9acd32 ;
	box-shadow: 0px 17px 10px -7px rgba (0, 0, 0, 0.4);
	border: solid 3px;
	border-radius: 5px;
	font-size: 20px;
	float: auto;



}

button:hover {
	color: #ADFF2F;
	background-color: black;
}

nav {
	position: absolute;
	top: 50px;
	left: 50px;
	


}

nav ul {
	margin: 0;
	Padding: 0;
	float: left;
	height: 38px;
	box-shadow: opx, 0px, 32px, 0px, #111;
	border-radius: 10px;

}

nav ul li {
	position: relative;
	border-right: 1px solid;
	float: left;
	list-style: none;
	background: #888;
	padding: 10px;
	width: 70px;
	text-align: center;
	transition: all 500ms;
	color: #9acd32;

}

nav ul li:first-child {
	border-radius: 10px 0 0 10px;
}

nav ul li:last-child {
	border-radius: 0 10px 10px 0;
	border: none;
}

nav ul li:hover {
	background: #9acd32;
	color: #FFF;
}

nav ul li:hover ul {
	height: auto;
	opacity: 1;
}

nav ul li ul {
	height: 0;
	overflow: hidden;
	opacity: 0;
	position: absolute;
	top: 45px;
	left: 0;
}
nav ul li ul li:first-child {
	border-radius: 10px 10px 0 0;
}

nav ul li ul li:last-child {
	border-radius: 0 0 10px 10px;
	border: none;
}

p {
	color: #FFF
}