body {
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: transparent; /* Transparenter Hintergrund */
    margin: 0;
    padding: 0;
}

/* Hauptüberschrift */
h1 {
    text-align: center;
    margin: 20px 0;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-size: 24px; /* Anpassung für mobile Geräte */
}

/* Karte */
.map-container {
    display: flex;
    justify-content: center;
    margin: 20px;
}

iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
}

/* Adresse */
.address {
    text-align: center;
    margin: 20px;
    font-size: 18px;
    color: #555;
}

/* Navigationsbutton */
.navigate-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.navigate-button a {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #ffcc00;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.navigate-button a:hover {
    background-color: #ff9900;
}

/* Mobiles Design */
@media (max-width: 600px) {
    h1 {
        font-size: 20px;
        margin: 15px 0;
    }

    .map-container {
        margin: 10px;
    }

    iframe {
        height: 300px;
    }

    .navigate-button a {
        font-size: 16px;
        padding: 10px 20px;
    }

    .address {
        font-size: 16px;
        margin: 15px;
    }
}
