diff --git a/index.html b/index.html
index 861123c..c8e2c6e 100644
--- a/index.html
+++ b/index.html
@@ -384,8 +384,8 @@
-
-
+
+
@@ -540,14 +540,14 @@
// Add 5 minutes to the timer
function addTime() {
- timeRemaining += 5 * 60; // Add 5 minutes
+ timeRemaining += 1 * 60; // Add 1 minute
updateTimerDisplay();
}
// Remove 5 minutes from the timer
function removeTime() {
- if (timeRemaining > 5 * 60) {
- timeRemaining -= 5 * 60; // Remove 5 minutes
+ if (timeRemaining > 1 * 60) {
+ timeRemaining -= 1 * 60; // Remove 1 minute
} else {
timeRemaining = 0;
}