/* Allgemeine Einstellungen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

body.light {
    background-color: #f1f1f1;
    color: #333;
}

body.dark {
    background-color: #121212;
    color: #f1f1f1;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 15px;
}

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

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #444;
}

img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

section {
    margin: 20px;
    display: flex;
    justify-content: center;
}

.section-div{
    width: 50%;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

form input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
}

form input[type="submit"]:hover {
    background-color: #555;
}

.zitat{
    text-style: italic;
}

.potrait{
    width: 45%;
}

li {
    line-height: 30pt;
}

.vita{
    font-weight: ;
   
}

.vita-rahmen{
    text-align: left;
    margin: 0 auto;
}

.liste{
    list-style-type: disc;
}

angebot {
    text-align: center;
    width: 2px;
}

/* Farben für Links im Footer */
.footer-link {
    color:white; /* Kräftiges weiß für Links */
}

.footer-link:hover {
    color: grey; /* Dunkleres grau für Hover-Effekt */
}

/* Dark Mode */
body.dark .footer-link {
    color: white; /* Helles weiß für Links im Dark Mode */
}

body.dark .footer-link:hover {
    color: grey; /* Etwas grau für Hover im Dark Mode */
}

/* Light Mode */
body.light .footer-link {
    color: white; /* Kräftiges weiß für Links im Light Mode */
}

body.light .footer-link:hover {
    color: grey; /* Dunkleres grau für Hover im Light Mode */
}

@media only screen and (max-width: 600px) {
    .section-div {
        width: 80%;
    }
}