body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #BCA393;
}

header {
	background-color: #F49430;
	color: #fff;
	padding: 20px;
	
}

header h1 {
    margin: 0;
	text-align: left;
	font-size: 45px;
}


nav ul {
	align-content: flex-end;
	text-align: right;
    list-style: none;
    padding: 0;
	font-size: 30px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
	text-align: right;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 50px 20px;
}

.cat h2 {
	font-size: 4500;
	color: wheat;
	text-align: left;
}

gallery h2 {
	font-size: 2000;
	color: wheat;
	text-align: left;
}

gallery p {
	color: wheat;
}


#about {
	background-color: #7B6B63;
	padding: 10px;
	border-radius: 20px;
	margin: 3em;
	margin-top: 4em;
	color: wheat;
}

.cat {
	background-color: #7A8A39;
	padding: 10px;
	border-radius: 20px;
	margin: 3em;
	color: wheat;
}
.catimg {
	horizontal-align: right;
}

.gallery {
	display: grid;
	/*	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
	grid-template-columns: repeat(3, minmax(200px, 1fr));
	grid-gap: 20px; 
	background-color: #4D7A2E;
	padding: 30px;
	border-radius: 20px;
	position: relative;
}

.gallery img {
    width: 100%;
    height: auto;
	color: antiquewhite;
}

.vid {
    width: 100%;
    height: auto;
    /* overflow: hidden; */
	
}

.contact-form label {
	display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #A89200;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
     background-color: #005bb5;
}


/* Stil für das vergrößerte Bild */
#modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

/* Bild innerhalb des modals */
#modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Schließen-Schaltfläche */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}