/* styles.css */



h1 {
  margin-bottom: 20px;
}

.timer {
  font-size: 3em;
  margin-bottom: 20px;
}

.time-part {
  display: inline-block;
  width: 100px;
  text-align: center;
  background: #eee;
  padding: 10px;
  border-radius: 5px;
}

.controls input {
  width: 60px;
  margin: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.controls button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
}

.controls button:hover {
  background-color: #0056b3;
}
