
body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* echtes Schwarz */
    color: #f8f8f8;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.logo {
    width: 300px; /* größeres Logo */
    margin-bottom: 40px;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
p {
    font-size: 1.2em;
    line-height: 1.5;
}
