/* Grundkonfiguration für die gesamte Seite */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    /* Hellblauer Hintergrund */
    background-color: #e3f2fd; 
    
    /* Perfekte Zentrierung (horizontal und vertikal) */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Schriftart-Schick */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
}

/* Container für Text und Logo */
.maintenance-container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

/* Styling für den Text */
.maintenance-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px; /* Abstand nach unten zum Logo */
    font-weight: 500;
}

/* Styling für das Logo */
.maintenance-logo {
    max-width: 200px; /* Maximale Breite des Logos */
    height: auto;     /* Proportionen beibehalten */
    display: block;
    margin: 0 auto;   /* Zusätzliche Absicherung für die Zentrierung */
}