body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

#timer-container {
    text-align: center;
}

#timer {
    font-size: 60px;
    margin-bottom: 20px;
}

#buttons {
    display: flex;
    justify-content: center;
    gap: 10px; /* Abstand zwischen den Buttons */
}

button {
    padding: 10px 20px;
    font-size: 16px;
}