/* Grundlegende Einstellungen */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Volle Bildschirmhöhe */
}

/* Die Box in der Mitte */
.container {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

/* Überschriften Design */
h1 {
    color: #faae2b; /* Cloudflare Orange ;) */
    margin-bottom: 0.5rem;
}

p {
    line-height: 1.6;
    color: #666;
}

/* Button Design */
.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    background-color: #0070f3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #005bb5;
}

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #999;
}