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

.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-color: #f9f9f9;
}

.error-content {
    background-color: #fff;
    border: 2px solid #f57c00; /* Schöner oranger Rand */
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

.error-image {
    width: 300px;
    height: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    color: #f57c00; /* Oranger Titel für Fehlermeldung */
    font-size: 24px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #333;
}

a {
    color: #f57c00;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
