/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    color: #333;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    margin-top: 2rem;
}

.app-logo {
    width: 150px;
    height: 150px;
    border-radius: 25%; /* Runde Ecken wie ein App Icon */
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Main Content */
main {
    text-align: center;
    margin: 2rem;
    padding: 0 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.button-container {
    margin-top: 2.5rem; /* Erhöhter Abstand zum Text */
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Entfernt den blauen Hintergrund und die Umrandung */
.button-container a {
    text-decoration: none;
    border: none;
    outline: none;
}

.button-container img {
    width: 150px;
    height: auto;
    border: none;
    outline: none;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 1rem 0;
    background-color: #333;
    color: #fff;
    width: 100%;
    text-align: center;
}

footer a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 0.9rem;
}

footer a:hover {
    text-decoration: underline;
}

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

    p {
        font-size: 1.1rem;
    }

    .app-logo {
        width: 120px;
        height: 120px;
    }
}

.app-store-link {
    background-color: transparent !important; /* Entfernt die blaue Hintergrundfarbe */
    padding: 0 !important; /* Entfernt den zusätzlichen Innenabstand */
    border-radius: 0 !important; /* Keine abgerundeten Ecken */
    box-shadow: none !important; /* Entfernt den Schatten */
}

