body {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden; /* Verhindert Scrollen, wenn der Knopf bewegt wird */
}
#robabot-button {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: red;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.1s ease-out; /* Schnelle Bewegung für "Maximalgeschwindigkeit" */
}
