body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #222;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: #333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  width: 90%;
  max-width: 400px;
}

.timer #zeit {
  font-size: 48px;
  margin: 10px 0;
}

.timer #status {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.controls button {
  padding: 12px 20px;
  font-size: 18px;
  margin: 10px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  background-color: #007acc;
  color: white;
}

.controls button:hover {
  background-color: #005a99;
}
