html {
	display: block;
	width: 96%;
	max-width: 980px;
	margin: 1.25em auto;
	padding: 0em;

	box-sizing: border-box;
	background: url(../img/hintergrund.jpg);
	background-attachment: fixed;
}

.logo img {
	max-width: 100%;
}


.bild {
	display: flex;
	justify-content: space-between;
}
.pferd {
	width: 30%;
}
.pferd img {
	width: 55%;
}
.menschen {
	width: 30%;
}
.menschen img {
	width: 100%;
	margin: 0 0 0 -15%;
}
.hund {
	width: 30%;
}
.hund img {
	width: 100%;
	margin: 10% 0 0 0;
}

.content {
	background: wheat;
	color: #4a1818;
	border: 3px solid #4a1818;
	border-radius: 0 55px;
	margin: 20px 10px;
	padding: 20px;
}


/* nav {
	display: flex; 
	flex-direction: row;
	justify-content: center;
} */


ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

li {
	color: #4a1818;
	background: wheat;
	border: 1px solid #4a1818;
	border-radius: 0px 0.5em 0.5em;
	text-decoration: none;
	text-align: center;
	margin: 10px 0 0 0;
}

/*  nav a {
    display: inline-block;
    width: 95%;
    background: wheat;
    border: 1px solid #4a1818;
    margin: 0;
    text-decoration: none;
    text-align: center;
    color: #4a1818;
}
  */

li a, .dropbtn {
	display: inline-block;
	color: #4a1818;
	text-align: center;
	padding: 10px 0;
	text-decoration: none;
	width: 165px;
}

li a:hover, .dropdown:hover .dropbtn {
  color: wheat;
  background-color: #4a1818;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	color: #4a1818;  
	background-color: wheat;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {

	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #7d3232;
	color: wheat;
	border-radius: 0 10px;
}

.dropdown:hover .dropdown-content {
	display: block;
	border-radius: 12px;

}

footer {
	background: wheat;
	color: #4a1818;
	border: 3px solid #4a1818;
	border-radius: 55px 0;
	margin: 20px 10px;
	padding: 20px;
}

footer p {
	float: right;
	margin: -7px 10px;
}
@media all and (max-width: 1024px) {
	ul {

		flex-direction: unset;
		font-size: 3em;
	}
li {

	width: 48%;
}
	
}

@media all and (max-width: 420px) {
	ul {


		font-size: 2em;
	}
}















