/* style.css - Tema Dark */

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #e0e0e0;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffffff;
}

h2 {
  font-size: 48px;
  font-weight: bold;
  margin-top: 0;
  color: #ffffff;
}

#relogio {
  font-size: 64px;
  font-weight: bold;
  margin-top: 20px;
  color: #00ffcc;
}

#cronometro {
  font-size: 48px;
  font-weight: bold;
  margin-top: 20px;
  color: #00ffcc;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #1f1f1f;
  color: #fff;
  cursor: pointer;
  margin: 10px;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #333;
}

button:disabled {
  background-color: #555;
  cursor: not-allowed;
}
