body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px; /* Optional: für bessere Kontrolle der Breite */
    text-align: center;
    margin-top: 60px; /* Abstand nach oben, um Platz für das Logo zu lassen */
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 120px;
    height: auto;
}

.text {
    margin-top: 100px; /* Platz unterhalb des Logos */
}

h1 {
    font-size: 2em;
    margin: 0.5em 0;
}

p {
    font-size: 1.2em;
    color: #555;
}
