/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 800px;
    padding: 20px;
    margin: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Überschrift */
h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 0.5em;
    text-align: center;
}

/* Text */
p {
    line-height: 1.6;
    font-size: 1.1em;
    margin-bottom: 1em;
    text-align: center;
}
a {
    color: black;
}


