/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header oben */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo {
    font-weight: bold;
    color: red;
    font-size: 1.5rem;
}

header .impressum a {
    font-size: 0.8rem;
    text-decoration: none;
    color: black;
}

/* Roter Balken unter Header */
.red-bar {
    width: 100%;
    height: 5px;
    background-color: red;
}

/* Hauptinhalt */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

main a {
    display: block;
    margin: 20px 0;
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    transition: color 0.3s;
}

main a:hover {
    color: red;
}

.highlight {
    font-weight: bold;
    font-size: 1.5rem;
    color: red;
}

/* Navigation-Leiste (About, Contact) */
.nav-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: red;
}
