/* Hintergrundbild */
body {
    margin: 0;
    padding: 0;
    background: url('a78a0887624af29415400795760dda60.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Hauptteil */
.main-content {
    background-color: black;
    color: white;
    border: 5px solid yellow; /* Geringe gelbe Umrandung */
    margin: 10px; /* Abstand zum Rand */
    padding: 10px;
    border-radius: ; /* Optional: Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Optional: Schatteneffekt */
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f9;
}

.button-container {
    text-align: center;
}

.simple-button {
    background-color: #007bff; /* Blau */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.simple-button:hover {
    background-color: #0056b3; /* Dunkleres Blau */
}

.simple-button:active {
    background-color: #004080; /* Noch dunkler */
}

.banner {
    background-color: red;  /* Rote Hintergrundfarbe */
    color: white;           /* Weißer Text */
    padding: 10px 20px;     /* Innenabstand */
    font-size: 18px;        /* Textgröße */
    font-weight: bold;      /* Fettdruck */
    border-radius: 5px;     /* Abgerundete Ecken */
    margin-bottom: 20px;    /* Abstand zum nächsten Inhalt */
}

    .map-link {
        margin-top: 20px;
        font-family: Arial, sans-serif;
    }

    .map-link a {
        color: #0066cc;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s;
    }

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

.Aktion {
    background-color: #3399ff; /* Helleres Blau */
    color: black;              /* Schwarzer Text */
    padding: 10px 20px;        /* Innenabstand */
    font-size: 18px;           /* Textgröße */
    font-weight: bold;         /* Fettdruck */
    border-radius: 5px;        /* Abgerundete Ecken */
    margin-bottom: 20px;       /* Abstand nach unten */
    display: inline-flex;     /* Nimmt nur so viel Platz wie nötig */
}


