html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #a8edea, #76c893);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1b4332;
}

.container {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 420px;
  width: 100%;
  transition: all 0.3s ease;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2d6a4f;
}

#timer {
  font-size: 3rem;
  margin: 1rem 0;
  color: #2d6a4f;
  font-weight: bold;
}

.buttonStart {
  padding: 0.8rem 1.8rem;
  margin: 0.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #40916c;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buttonStart:hover {
  background-color: #1b4332;
}

.buttonRemake {
  padding: 0.8rem 1.8rem;
  margin: 0.5rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #914040;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buttonRemake:hover {
  background-color: #431b1b;
}

.quote {
  margin-top: 2rem;
  font-style: italic;
  color: #4a4e69;
  font-size: 1rem;
}