/* Grundlegende Resets und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container für den Hauptinhalt */
.container {
    width: 90%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Logo-Styling */
.logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

/* Überschriften */
h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

/* Textabsätze */
p {
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Button-Styling */
button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

button:active {
    transform: translateY(1px);
}

/* Status-Anzeige */
#status {
    margin-top: 20px;
    font-style: italic;
    color: #7f8c8d;
}

/* Responsive Design Anpassungen */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    button {
        padding: 10px 20px;
        font-size: 14px;
    }
}