body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: rgb(22, 87, 218);
}
#timer{
    font-size: 48px;
    margin: 20px;
}
button {
    background: linear-gradient(45deg, red, orange);
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;

}

button:hover {
    background: linear-gradient(45deg, orange, yellow);
    transform: scale(1.1);
    box-shadow: 0 0 15px yellow;
}

button:active {
    transform: scale(0.9); /* Button wird kurz kleiner */
    box-shadow: 0 0 5px red; /* Schwächerer Leuchteffekt */
}




button:hover {
    background: linear-gradient(45deg, orange, yellow);
    transform: scale(1.1);
    box-shadow: 0 0 15px yellow;
}

.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;
}
