body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0; /* Light grey background for the whole page */
}

.stopwatch {
  text-align: center;
  background-color: #ffffff; /* White background for the stopwatch */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#display {
  font-size: 48px;
  color: #333333; /* Dark grey color for the timer text */
  margin-bottom: 20px;
}

button {
  margin: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #4CAF50; /* Green background for buttons */
  color: white; /* White text for buttons */
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049; /* Darker green on hover */
}

#laps {
  margin-top: 20px;
  text-align: left;
  color: #555555; /* Dark grey color for laps */
}
