/* Allgemeine Stile */
body {
    background-image: url('icon/hintergrund-hamburg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

header p {
    font-size: 1em;
    margin: 10px 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Main */
main {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    flex-grow: 1;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid #ff9900;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

ul li i {
    margin-right: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 0.9em;
}

footer p {
    margin: 0;
}

/* E-Mail Link */
a.email-link {
    color: #ffcc00;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 0.9em;
    }

    h2 {
        font-size: 1.5em;
    }
}
