/* Grunddesign */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

/* Container-Box */
.container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

h1 {
    color: #e74c3c;
    margin-top: 0;
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
}

.subtext {
    font-size: 0.9rem;
    color: #666;
}

/* Der Button-Link */
.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2980b9;
}