body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fefae0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
    width: 100%;
  }
  h1 {
    margin-bottom: 20px;
  }
  .time-inputs {
    margin-bottom: 20px;
  }
  .time-inputs label {
    display: block;
    margin: 10px 0;
  }
  input {
    padding: 5px;
    width: 80px;
    text-align: center;
  }
  .timer {
    font-size: 48px;
    margin: 20px 0;
  }
  .controls button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 8px;
    background-color: #e63946;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  .controls button:hover {
    background-color: #d62828;
  }
  
  