body {
  font-family: Arial;
  text-align: center;
  margin-top: 50px;
  background-color: rgb(132, 113, 113);
}
.btn-group {
  display: flex;
  justify-content: space-evenly; /* equal space */
  margin: 20px auto; /* spacing between rows */
  width: 80%; /* adjust width as you like */
}

button {
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #3498db;
  color: white;
  transition: 0.2s;
}

/* Hover effect */
button:hover {
  background-color: #1d6fa5;
  transform: scale(1.05);
}

#count {
  font-size: 60px; /* BIG number */
  font-weight: bold; /* Bold for visibility */
  color: #3498db; /* Same contrast as your buttons */
  display: inline-block;
  margin: 20px 0; /* Space above & below */
  padding: 10px 25px;
  border-radius: 10px;
  background: #eaf6ff; /* Light background for contrast */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

p {
  font-size: 22px;
  font-weight: 500;
}
