/* Allgemeine Einstellungen */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #0078D4;
    background-size: cover;
}

/* Container für zentrierten Inhalt */
.container {
    max-width: 600px;
    margin: 50px auto;
    margin-top: 350px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Ansicht (Smartphones & kleine Tablets) */
@media screen and (max-width: 768px) {
    .container {
        margin-top: 30px;
        max-width: 90%; /* Verkleinert den Container für kleinere Bildschirme */
        padding: 20px; /* Weniger Padding für mehr Platz */
    }
}

/* Überschriften */
h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin-top: 20px;
}

/* Beschreibung */
p {
    font-size: 16px;
    line-height: 1.5;
}

/* Download-Buttons */
.download-btn {
    display: inline-block;
    padding: 12px 20px;
    margin: 10px;
    font-size: 16px;
    color: white;
    background: #0078D4;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #005a9e;
}

/* Button-Gruppe */
.button-group {
    margin-top: 15px;
}

/* Ladeanimation */
#loader {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    border: 5px solid #ccc;
    border-top-color: #0078D4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
