body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    background-color: #e8e8e8;
}

.container {
    width: 90%;
    margin: 0 auto;
}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 32px;
    font-weight: bold;
}

/* nav {
    margin-top: 15px;
}

nav a {
    color: #ecf0f1;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #3498db;
} */


/* Hier geht dein bestehendes CSS weiter */

nav {
    background-color: #2c3e50;
    color: #fff;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 40px 0;
}

.section {
    margin-bottom: 60px;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* Füge diesen Teil zu deinem bestehenden CSS hinzu */

/* Kontaktformular-Stile */
form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #3498db;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #2980b9;
}

/* Optional: Füge einen Hover-Effekt für das Formularfeld hinzu */
input:hover,
textarea:hover {
    border-color: #3498db;
}

/* Füge diesen Teil zu deinem bestehenden CSS hinzu */


/* Voice-Over-Stile */
.voiceover-example {
    margin-bottom: 20px;
}

.audio-controls {
    display: flex;
    align-items: center;
}

audio {
    width: 100%;
    margin-top: 8px;
}

/* Optional: Füge einen Hover-Effekt für die Voice-Over-Beispiele hinzu */
.voiceover-example:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}