/* General page styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    height: 100%;
    box-sizing: border-box;
}
html {
    height: 100%;
}

/* Header styling */
header {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

/* Navigation styling */
nav {
    text-align: center;
    padding: 1rem;
    background: #444;
}
nav a {
    margin: 0 1rem;
    color: #fff;
    text-decoration: none;
}
main {
    background: url('/static/img/image00004.jpeg') no-repeat top center fixed;
    background-size: contain;   /* skaliert so, dass das ganze Bild sichtbar ist */
    background-color: #000;     /* optional: Füllfarbe für freie Flächen */
    padding: 20px;
    min-height: calc(100vh - 150px);
}

/* Text content section */
.text-content {
    background: rgba(100, 100, 100, 0.9);
    padding: 20px;
    max-width: 80%;
    margin: 100px auto;
    border-radius: 10px;
    color: white;
    text-align: center;
}
.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.text-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Allow the footer to always sit below the content */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative; /* Change from fixed to relative */
    bottom: 0;
}
footer a {
    color: white;
    text-decoration: underline;
}
footer a:visited,
footer a:active {
    color: white;
    text-decoration: underline;
}
footer a:hover {
    color: #ddd;
}

/* Content box styling */
.content {
    background: rgba(100, 100, 100, 0.7);
    padding: 20px;
    max-width: 900px;
    margin: 50px auto;
    border-radius: 10px;
    color: white;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    text-align: left;
}
.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.content h3, .content h4 {
    margin-top: 30px;
    font-size: 1.5rem;
}
.content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.content ul {
    margin-top: 15px;
    margin-left: 20px;
}
.content ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
