body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

/* Center the content on the page */
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
}

/* Style the timer */
#timer {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.button-container {
  display: flex;
  flex-direction: row; /* Arrange buttons in a row */
  justify-content: center; /* Center the buttons horizontally */
  align-items: center; /* Align buttons vertically */
  gap: 10px; /* Add spacing between buttons */
  margin-top: 20px; /* Add spacing above the button container */
}

/* Ensure buttons do not stretch */
button {
  display: inline-block; /* Prevent buttons from stretching */
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

button:active {
  background-color: #003f7f;
}