/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.maintenance-box {
    width: 400px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.logo {
    max-width: 200px; /* Anpassen der maximalen Breite des Logos */
    margin-bottom: 20px;
}

.maintenance-box h2 {
    margin-bottom: 20px;
    color: #333;
}

.maintenance-box p {
    margin-bottom: 15px;
    color: #555;
}

.maintenance-box a {
    color: #007bff;
    text-decoration: none;
}

.maintenance-box a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

footer a {
    color: #ccc; /* Angepasste Schriftfarbe für den Link im Footer */
}
