body {
    font-family: sans-serif;
    margin: 0;
    overflow: hidden; /* Verhindert Scrollbalken */
    background-image: url("/background.jpg"); /* Hier wird das generierte Bild eingefügt */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; /* Textfarbe */
    text-align: center;
}

.container {
    background-color: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund für den Text */
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

a {
    color: #fff;
    text-decoration: underline;
}
