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

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

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

h1 {
    color: #D88C72;
}

h2 {
    color: #7F9D87;
}

p {
    color: #7C6146;
}

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

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

/* Kontaktformular */
form {
    text-align: left;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #A8B2A1;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input[type="submit"] {
    background-color: #D88C72;
    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: #7F9D87;
}

/* Notizen */
.note {
    margin-top: 20px;
    background-color: #F8D98D;
    padding: 10px;
    border-radius: 5px;
}

/* Footer */
footer p:last-of-type {
    font-size: 10px;
    color: #6D6A4E;
}

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