/* Hier kommt dein eigenes CSS rein */
.mein-button {
    background: white;
    color: black;
}
/* ===== Hero Title ===== */
.hero-title {
    font-size: 48px;
    font-weight: 100;
    color: #000000;               /* Schwarz statt leer */
    padding-bottom: 4px;
    font-family: 'Arial', sans-serif;  /* Standard-Font */
}

/* ===== Hero Subtitle ===== */
.hero-subtitle {
    font-size: 18px;
    line-height: 1.5em;
    color: #333333;               /* dunkles Grau statt leer */
    padding-bottom: 10px;
    font-family: 'Arial', sans-serif;
    background-color: transparent; /* statt leer */
}

/* ===== Buttons ===== */
.button-primary {
    background-color: #ff0000;    /* Rot statt leer */
    color: #ffffff;
    padding: 10px 20px;
    font-family: 'Arial', sans-serif;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* ===== Textabsätze ===== */
.text-content {
    font-size: 16px;
    line-height: 1.6em;
    color: #222222;
    font-family: 'Arial', sans-serif;
}

/* ===== Allgemeine Links ===== */
a {
    color: #0066cc;               /* Standard-Linkfarbe */
    text-decoration: none;
}

a:hover {
    color: #004999;
    text-decoration: underline;
}
