body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(to right, #ffecd2, #fcb69f);
  text-align: center;
  padding: 50px;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  max-width: 400px;
  margin: auto;
}

button {
  font-size: 1.5rem;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 10px;
  border: none;
  background-color: #ff7f50;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

#score, #time {
  font-weight: bold;
  font-size: 1.2rem;
}