body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top right, #00c6ff, #0072ff, #5800ff, #b300ff); /* Farbverlauf schräg nach oben rechts */
    font-family: Arial, sans-serif;
}

.centered-text {
    color: #aaaaaa00; /* Weißer Text für besseren Kontrast */
    font-size: 15em;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to top right, #0072ff, #5800ff, #b300ff, #00c6ff); /* Gleicher Farbverlauf wie der Hintergrund */
    -webkit-background-clip: text;
    color: transparent; /* Transparenter Text */
}
