body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; /* Oder eine andere ansprechende Schriftart */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5; /* Heller Hintergrund */
    color: #333;
    text-align: center;
}

.container {
    padding: 20px;
    max-width: 600px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.construction-graphic {
    max-width: 80%; /* Passt die Größe der Grafik an */
    height: auto;
    margin-bottom: 30px;
    display: block; /* Zentriert das Bild */
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.5em;
    color: #0056b3; /* Akzentfarbe für die Überschrift */
    margin-bottom: 15px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    font-size: 1em;
}