body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: rgb(22, 87, 218);
}
#timer{
    font-size: 48px;
    margin: 20px;
}
button {
    font-size: 20px;
    margin: 5px;
    background-color: rgb(19, 57, 133);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease; /* Sanfte Animation */
    border: 3px solid red;
    background-color: rgb(22, 87, 218);
    color: red;
}

button:hover {
    background-color: red;
    color: white;
    transform: scale(1.1); /* Button wird größer */
    box-shadow: 0 0 15px red; /* Leuchteffekt */
}

button:active {
    transform: scale(0.9); /* Button wird kurz kleiner */
    box-shadow: 0 0 5px red; /* Schwächerer Leuchteffekt */
}

.fixed-button {
    position: fixed;
    bottom: 20px; /* Abstand vom unteren Rand */
    left: 50%;
    transform: translateX(-50%); /* Exakte Zentrierung */
    background-color: blue;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 10px;
}
