/* Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #7fc8f8;
    color: #fff;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    background-color: #7fc8f8;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

footer {
    background-color: #7fc8f8;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

section {
    margin-bottom: 2rem;
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #2c3e50;
}
h2, h3 {
	padding-top: 20px;
}
p {
    margin-bottom: 1rem;
}

/* Lists */
section ul {
	padding-left: 20px;
}
.cv-list {
	list-style: none;
    list-style-position: inside; /* Positioniert die bullets innerhalb des Padding-Bereichs */
    padding-left: 20px; /* Erhöht den Abstand der bullets vom linken Rand */
}
.cv-entry-details {
	padding-left: 15px;
	list-style: none;
}
.publication-list {
	list-style-position: inside; /* Positioniert die bullets innerhalb des Padding-Bereichs */
    padding-left: 20px; /* Erhöht den Abstand der bullets vom linken Rand */
    list-style: none;
}
.publication-list li {
	padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }
}
