/* Lehrveranstaltungen Styling */
.course {
    margin-bottom: 20px;
}

.course strong {
    font-size: 1.2em;
    color: #333;
}

.course p {
    margin: 5px 0;
}


/* Publikationen Styling */
.publication {
    margin-bottom: 20px;
}

.publication strong {
    font-size: 1.2em;
    color: #333;
}

.publication p {
    margin: 5px 0;
}

.publication a {
    color: #007bff;
    text-decoration: none;
}

.publication a:hover {
    text-decoration: underline;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    hyphens: auto;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    font-size: 1.2em;
}

nav {
    background: #555;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
    white-space: nowrap;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
}

nav ul li a:hover {
    background: #333;
    border-radius: 5px;
}

.section {
    padding: 20px 0;
}

.section h2 {
    margin-bottom: 20px;
    text-align: left;
    color: #333;
}

.section p, .section ul {
    text-align: justify;
}

footer {
    background: #333;
    color: #fff;
    text-align: justify;
    padding: 10px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    text-align: left;
}

footer p a {
    color: #ddd;
    text-decoration: none;
}

footer p a:hover {
    color: #fff;
    text-decoration: underline;
}