/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Hero-Bereich */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: normal;
    max-width: 800px;
    margin: auto;
}

.hero h1::first-letter {
    font-weight: bold;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: normal;
    max-width: 800px;
    margin: 10px auto;
}

.hero p {
    max-width: 700px;
    margin: auto;
}

/* Inhalt */
.content {
    flex: 1;
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

.api-section {
    margin-top: 20px;
}

.code-block {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
}

/* Footer */
.footer {
    padding: 15px 0;
    text-align: center;
    background-color: #343a40;
    color: white;
    margin-top: auto;
}

.footer a {
    text-decoration: none;
    color: white;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer a:hover {
    color: #00c6ff;
    text-decoration: underline;
}
