body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #A45EE5;
    text-align: center;
    color: #333333;
}

img {
    max-width: 100%;
    border-radius: 10px;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.container img:first-of-type {
    max-width: 100%;
}

h1 {
    color: #F28C28;
}

h2 {
    color: #6CBF40;
}

p {
    color: #333333;
}



a {
    color: #2A4D9E;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #E84A8D;
}

/* Kontaktformular-CSS */
form {
    text-align: left; /* Text im Formular linksbündig */
    width: 90%; /* Formularbreite anpassen */
    max-width: 500px; /* Maximale Formularbreite */
    margin: 20px auto; /* Zentrieren des Formulars */
}

label {
    display: block; /* Labels untereinander anzeigen */
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Padding und Border in die Breite einbeziehen */
}

textarea {
    resize: vertical; /* Vertikale Größenänderung erlauben */
    min-height: 150px;
}

input[type="submit"] {
    background-color: #F28C28; /* Farbe des Submit-Buttons */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-bottom: 25px;
}

input[type="submit"]:hover {
    background-color: #E84A8D; /* Farbe des Submit-Buttons bei Hover */
}

/* bunny-Feld verstecken  */
#bunny {
    display: none;
}
.opacity-bunny {
	opacity: 0;
	position: absolute;
	left: -9999px;
}

.margin-bunny {
	margin-left: -9999px;
	position: absolute;
}


/* Notizen */


.note {
    margin-top: 20px;
    background-color: #F9D423;
    padding: 10px;
    border-radius: 5px;
}

/* Footer */

footer p:last-of-type {
    font-size: 10px;
    color: #333333;
}


@media (max-width: 800px) {
    body, .container {
        margin: 5px auto;
        max-width: 95%;
    }
}